ip_nat_core.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _IP_NAT_CORE_H
  2. #define _IP_NAT_CORE_H
  3. #include <linux/list.h>
  4. #include <linux/netfilter_ipv4/ip_conntrack.h>
  5. /* This header used to share core functionality between the standalone
  6.    NAT module, and the compatibility layer's use of NAT for masquerading. */
  7. extern unsigned int ip_nat_packet(struct ip_conntrack *ct,
  8.        enum ip_conntrack_info conntrackinfo,
  9.        unsigned int hooknum,
  10.        struct sk_buff **pskb);
  11. extern int ip_nat_icmp_reply_translation(struct sk_buff **pskb,
  12.  struct ip_conntrack *ct,
  13.  enum ip_nat_manip_type manip,
  14.  enum ip_conntrack_dir dir);
  15. #endif /* _IP_NAT_CORE_H */