|
Lines 46-51
Link Here
|
| 46 |
match(const struct sk_buff *skb, |
46 |
match(const struct sk_buff *skb, |
| 47 |
const struct net_device *in, |
47 |
const struct net_device *in, |
| 48 |
const struct net_device *out, |
48 |
const struct net_device *out, |
|
|
49 |
const struct xt_match *match, |
| 49 |
const void *matchinfo, |
50 |
const void *matchinfo, |
| 50 |
int offset, |
51 |
int offset, |
| 51 |
unsigned int protoff, |
52 |
unsigned int protoff, |
|
Lines 83-88
Link Here
|
| 83 |
static int |
84 |
static int |
| 84 |
checkentry(const char *tablename, |
85 |
checkentry(const char *tablename, |
| 85 |
const void *ip, |
86 |
const void *ip, |
|
|
87 |
const struct xt_match *match, |
| 86 |
void *matchinfo, |
88 |
void *matchinfo, |
| 87 |
unsigned int matchsize, |
89 |
unsigned int matchsize, |
| 88 |
unsigned int hook_mask) |
90 |
unsigned int hook_mask) |
|
Lines 115-120
Link Here
|
| 115 |
.name = "time", |
117 |
.name = "time", |
| 116 |
.match = &match, |
118 |
.match = &match, |
| 117 |
.checkentry = &checkentry, |
119 |
.checkentry = &checkentry, |
|
|
120 |
.matchsize = sizeof(struct ipt_time_info), |
| 118 |
.me = THIS_MODULE |
121 |
.me = THIS_MODULE |
| 119 |
}; |
122 |
}; |
| 120 |
|
123 |
|