netfilter_ipv4.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __LINUX_IP_NETFILTER_H
  2. #define __LINUX_IP_NETFILTER_H
  3. /* IPv4-specific defines for netfilter. 
  4.  * (C)1998 Rusty Russell -- This code is GPL.
  5.  */
  6. #include <linux/config.h>
  7. #include <linux/netfilter.h>
  8. /* IP Cache bits. */
  9. /* Src IP address. */
  10. #define NFC_IP_SRC 0x0001
  11. /* Dest IP address. */
  12. #define NFC_IP_DST 0x0002
  13. /* Input device. */
  14. #define NFC_IP_IF_IN 0x0004
  15. /* Output device. */
  16. #define NFC_IP_IF_OUT 0x0008
  17. /* TOS. */
  18. #define NFC_IP_TOS 0x0010
  19. /* Protocol. */
  20. #define NFC_IP_PROTO 0x0020
  21. /* IP options. */
  22. #define NFC_IP_OPTIONS 0x0040
  23. /* Frag & flags. */
  24. #define NFC_IP_FRAG 0x0080
  25. /* Per-protocol information: only matters if proto match. */
  26. /* TCP flags. */
  27. #define NFC_IP_TCPFLAGS 0x0100
  28. /* Source port. */
  29. #define NFC_IP_SRC_PT 0x0200
  30. /* Dest port. */
  31. #define NFC_IP_DST_PT 0x0400
  32. /* Something else about the proto */
  33. #define NFC_IP_PROTO_UNKNOWN 0x2000
  34. /* IP Hooks */
  35. /* After promisc drops, checksum checks. */
  36. #define NF_IP_PRE_ROUTING 0
  37. /* If the packet is destined for this box. */
  38. #define NF_IP_LOCAL_IN 1
  39. /* If the packet is destined for another interface. */
  40. #define NF_IP_FORWARD 2
  41. /* Packets coming from a local process. */
  42. #define NF_IP_LOCAL_OUT 3
  43. /* Packets about to hit the wire. */
  44. #define NF_IP_POST_ROUTING 4
  45. #define NF_IP_NUMHOOKS 5
  46. enum nf_ip_hook_priorities {
  47. NF_IP_PRI_FIRST = INT_MIN,
  48. NF_IP_PRI_CONNTRACK = -200,
  49. NF_IP_PRI_MANGLE = -150,
  50. NF_IP_PRI_NAT_DST = -100,
  51. NF_IP_PRI_FILTER = 0,
  52. NF_IP_PRI_NAT_SRC = 100,
  53. NF_IP_PRI_LAST = INT_MAX,
  54. };
  55. /* Arguments for setsockopt SOL_IP: */
  56. /* 2.0 firewalling went from 64 through 71 (and +256, +512, etc). */
  57. /* 2.2 firewalling (+ masq) went from 64 through 76 */
  58. /* 2.4 firewalling went 64 through 67. */
  59. #define SO_ORIGINAL_DST 80
  60. #ifdef __KERNEL__
  61. #ifdef CONFIG_NETFILTER_DEBUG
  62. void nf_debug_ip_local_deliver(struct sk_buff *skb);
  63. void nf_debug_ip_loopback_xmit(struct sk_buff *newskb);
  64. void nf_debug_ip_finish_output2(struct sk_buff *skb);
  65. #endif /*CONFIG_NETFILTER_DEBUG*/
  66. extern int ip_route_me_harder(struct sk_buff **pskb);
  67. #endif /*__KERNEL__*/
  68. #endif /*__LINUX_IP_NETFILTER_H*/