diff options
author | Yasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp> | 2007-07-08 01:26:16 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-07-11 01:17:36 -0400 |
commit | d8a0509a696de60296a66ba4fe4f9eaade497103 (patch) | |
tree | 6aa00195176f8cd05221e356877ec83d0aa0536c /include/net | |
parent | dacd2a1a5cf621288833aa3c6e815b86a1536538 (diff) |
[NETFILTER]: nf_nat: kill global 'destroy' operation
This kills the global 'destroy' operation which was used by NAT.
Instead it uses the extension infrastructure so that multiple
extensions can register own operations.
Signed-off-by: Yasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/netfilter/nf_conntrack.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/net/netfilter/nf_conntrack.h b/include/net/netfilter/nf_conntrack.h index 71386e5c4bb7..ef4a403878a3 100644 --- a/include/net/netfilter/nf_conntrack.h +++ b/include/net/netfilter/nf_conntrack.h | |||
@@ -213,9 +213,6 @@ extern void nf_conntrack_tcp_update(struct sk_buff *skb, | |||
213 | struct nf_conn *conntrack, | 213 | struct nf_conn *conntrack, |
214 | int dir); | 214 | int dir); |
215 | 215 | ||
216 | /* Call me when a conntrack is destroyed. */ | ||
217 | extern void (*nf_conntrack_destroyed)(struct nf_conn *conntrack); | ||
218 | |||
219 | /* Fake conntrack entry for untracked connections */ | 216 | /* Fake conntrack entry for untracked connections */ |
220 | extern struct nf_conn nf_conntrack_untracked; | 217 | extern struct nf_conn nf_conntrack_untracked; |
221 | 218 | ||