mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
472 B
C
22 lines
472 B
C
/* Copyright (c) 2009 Open Information Security Foundation */
|
|
|
|
/**
|
|
* \file
|
|
*
|
|
* Defragmentation module.
|
|
*
|
|
* \author Endace Technology Limited, Jason Ish <jason.ish@endace.com>
|
|
*/
|
|
|
|
#ifndef __DEFRAG_H__
|
|
#define __DEFRAG_H__
|
|
|
|
typedef struct _DefragContext DefragContext;
|
|
|
|
void DefragInit(void);
|
|
Packet *Defrag4(ThreadVars *, DefragContext *, Packet *);
|
|
Packet *Defrag6(ThreadVars *, DefragContext *, Packet *);
|
|
void DefragRegisterTests(void);
|
|
|
|
#endif /* __DEFRAG_H__ */
|