diff options
author | Taehee Yoo <ap420073@gmail.com> | 2018-02-07 03:50:41 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2018-02-07 11:54:52 +0100 |
commit | d8ed9600581d40d818ae417b3086a333841b0559 (patch) | |
tree | 6bf28919b3d696ab54042b6105478af7687aa42e | |
parent | netfilter: nf_tables: fix flowtable free (diff) | |
download | linux-d8ed9600581d40d818ae417b3086a333841b0559.tar.xz linux-d8ed9600581d40d818ae417b3086a333841b0559.zip |
netfilter: remove useless prototype
prototype nf_ct_nat_offset is not used anymore.
Signed-off-by: Taehee Yoo <ap420073@gmail.com>
-rw-r--r-- | include/net/netfilter/nf_conntrack.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/net/netfilter/nf_conntrack.h b/include/net/netfilter/nf_conntrack.h index f5223bf2c420..062dc19b5840 100644 --- a/include/net/netfilter/nf_conntrack.h +++ b/include/net/netfilter/nf_conntrack.h @@ -213,11 +213,6 @@ static inline bool nf_ct_kill(struct nf_conn *ct) return nf_ct_delete(ct, 0, 0); } -/* These are for NAT. Icky. */ -extern s32 (*nf_ct_nat_offset)(const struct nf_conn *ct, - enum ip_conntrack_dir dir, - u32 seq); - /* Set all unconfirmed conntrack as dying */ void nf_ct_unconfirmed_destroy(struct net *); |