GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / netfilter_ipv4 / ipt_web.h
blob176208e2146f5955d796c46afc4b346ea1533fa1
1 /*
3 web (experimental)
4 HTTP client match
5 Copyright (C) 2006 Jonathan Zarate
7 Licensed under GNU GPL v2 or later.
9 */
10 #ifndef _IPT_WEB_H
11 #define _IPT_WEB_H
13 #define IPT_WEB_MAXTEXT 512
15 typedef enum {
16 IPT_WEB_HTTP,
17 IPT_WEB_RURI,
18 IPT_WEB_PATH,
19 IPT_WEB_QUERY,
20 IPT_WEB_HOST,
21 IPT_WEB_HORE
22 } ipt_web_mode_t;
24 struct ipt_web_info {
25 ipt_web_mode_t mode;
26 int invert;
27 char text[IPT_WEB_MAXTEXT];
30 #endif