blob: 147cd6477858af7e02185e77c761f8a7937b597a [file] [log] [blame]
#ifndef _XT_LAYER7_H
#define _XT_LAYER7_H
#define MAX_PATTERN_LEN 8192
#define MAX_PROTOCOL_LEN 256
struct xt_layer7_info {
char protocol[MAX_PROTOCOL_LEN];
char pattern[MAX_PATTERN_LEN];
u_int8_t invert;
};
#endif /* _XT_LAYER7_H */