ip_nat_core.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小: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 int ip_nat_init(void);
  8. extern void ip_nat_cleanup(void);
  9. extern unsigned int do_bindings(struct ip_conntrack *ct,
  10. enum ip_conntrack_info conntrackinfo,
  11. struct ip_nat_info *info,
  12. unsigned int hooknum,
  13. struct sk_buff **pskb);
  14. extern struct list_head protos;
  15. extern unsigned int icmp_reply_translation(struct sk_buff *skb,
  16.    struct ip_conntrack *conntrack,
  17.    unsigned int hooknum,
  18.    int dir);
  19. extern void replace_in_hashes(struct ip_conntrack *conntrack,
  20.       struct ip_nat_info *info);
  21. extern void place_in_hashes(struct ip_conntrack *conntrack,
  22.     struct ip_nat_info *info);
  23. /* Built-in protocols. */
  24. extern struct ip_nat_protocol ip_nat_protocol_tcp;
  25. extern struct ip_nat_protocol ip_nat_protocol_udp;
  26. extern struct ip_nat_protocol ip_nat_protocol_icmp;
  27. #endif /* _IP_NAT_CORE_H */