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.
12 lines
284 B
C
12 lines
284 B
C
17 years ago
|
/* Copyright (c) 2008 Victor Julien <victor@inliniac.net> */
|
||
|
#ifndef __PKT_VAR_H__
|
||
|
#define __PKT_VAR_H__
|
||
|
|
||
|
void PktVarAdd(Packet *, char *, u_int8_t *, u_int16_t);
|
||
|
PktVar *PktVarGet(Packet *, char *);
|
||
|
void PktVarFree(PktVar *);
|
||
|
void PktVarPrint(PktVar *);
|
||
|
|
||
|
#endif /* __PKT_VAR_H__ */
|
||
|
|