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.
16 lines
328 B
C
16 lines
328 B
C
17 years ago
|
#ifndef __UTIL_VAR_H__
|
||
|
#define __UTIL_VAR_H__
|
||
|
|
||
|
typedef struct _GenericVar {
|
||
|
u_int8_t type;
|
||
|
u_int16_t idx;
|
||
|
struct _GenericVar *next;
|
||
|
} GenericVar;
|
||
|
|
||
|
void GenericVarFree(GenericVar *);
|
||
|
void GenericVarAppend(GenericVar **, GenericVar *);
|
||
|
void GenericVarRemove(GenericVar **, GenericVar *);
|
||
|
|
||
|
#endif /* __UTIL_VAR_H__ */
|
||
|
|