• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/

Lines Matching refs:pf

66 	int pf;
76 int pf;
103 int pf;
159 typedef void nf_logfn(unsigned int pf,
174 int nf_log_register(int pf, struct nf_logger *logger);
176 void nf_log_unregister_pf(int pf);
179 void nf_log_packet(int pf,
187 int nf_hook_slow(int pf, unsigned int hook, struct sk_buff **pskb,
198 static inline int nf_hook_thresh(int pf, unsigned int hook,
208 if (list_empty(&nf_hooks[pf][hook]))
211 return nf_hook_slow(pf, hook, pskb, indev, outdev, okfn, thresh);
214 static inline int nf_hook(int pf, unsigned int hook, struct sk_buff **pskb,
218 return nf_hook_thresh(pf, hook, pskb, indev, outdev, okfn, INT_MIN, 1);
243 #define NF_HOOK_THRESH(pf, hook, skb, indev, outdev, okfn, thresh) \
245 if ((__ret=nf_hook_thresh(pf, hook, &(skb), indev, outdev, okfn, thresh, 1)) == 1)\
249 #define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) \
251 if ((__ret=nf_hook_thresh(pf, hook, &(skb), indev, outdev, okfn, INT_MIN, cond)) == 1)\
255 #define NF_HOOK(pf, hook, skb, indev, outdev, okfn) \
256 NF_HOOK_THRESH(pf, hook, skb, indev, outdev, okfn, INT_MIN)
259 int nf_setsockopt(struct sock *sk, int pf, int optval, char __user *opt,
261 int nf_getsockopt(struct sock *sk, int pf, int optval, char __user *opt,
264 int compat_nf_setsockopt(struct sock *sk, int pf, int optval,
266 int compat_nf_getsockopt(struct sock *sk, int pf, int optval,
276 extern int nf_register_queue_handler(int pf,
278 extern int nf_unregister_queue_handler(int pf);
284 extern void nf_invalidate_cache(int pf);
370 #define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
371 #define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) (okfn)(skb)
372 static inline int nf_hook_thresh(int pf, unsigned int hook,
381 static inline int nf_hook(int pf, unsigned int hook, struct sk_buff **pskb,