search for: nfct_attach

Displaying 1 result from an estimated 1 matches for "nfct_attach".

Did you mean: fst_attach
2002 May 08
0
Security Advisory
...i Apr 12 00:52:31 2002 @@ -405,6 +405,22 @@ return -EHOSTUNREACH; } =20 +#ifdef CONFIG_NETFILTER +/* If the original packet is part of a connection, but the connection + is not confirmed, our manufactured reply will not be associated + with it, so we need to do this manually. */ +static void nfct_attach(struct sk_buff *new_skb, struct nf_ct_info *nfct) +{ + void (*attach)(struct sk_buff *, struct nf_ct_info *); + + /* Avoid module unload race with ip_ct_attach being NULLed out */ + if (nfct && (attach =3D ip_ct_attach) !=3D NULL) + attach(new_skb, nfct); +} +#else +static void nfct_attach...