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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __LINUX_DECNET_NETFILTER_H
  2. #define __LINUX_DECNET_NETFILTER_H
  3. /* DECnet-specific defines for netfilter. 
  4.  * This file (C) Steve Whitehouse 1999 derived from the
  5.  * ipv4 netfilter header file which is
  6.  * (C)1998 Rusty Russell -- This code is GPL.
  7.  */
  8. #include <linux/netfilter.h>
  9. /* IP Cache bits. */
  10. /* Src IP address. */
  11. #define NFC_DN_SRC 0x0001
  12. /* Dest IP address. */
  13. #define NFC_DN_DST 0x0002
  14. /* Input device. */
  15. #define NFC_DN_IF_IN 0x0004
  16. /* Output device. */
  17. #define NFC_DN_IF_OUT 0x0008
  18. /* DECnet Hooks */
  19. /* After promisc drops, checksum checks. */
  20. #define NF_DN_PRE_ROUTING 0
  21. /* If the packet is destined for this box. */
  22. #define NF_DN_LOCAL_IN 1
  23. /* If the packet is destined for another interface. */
  24. #define NF_DN_FORWARD 2
  25. /* Packets coming from a local process. */
  26. #define NF_DN_LOCAL_OUT 3
  27. /* Packets about to hit the wire. */
  28. #define NF_DN_POST_ROUTING 4
  29. /* Input Hello Packets */
  30. #define NF_DN_HELLO 5
  31. /* Input Routing Packets */
  32. #define NF_DN_ROUTE 6
  33. #define NF_DN_NUMHOOKS 7
  34. enum nf_dn_hook_priorities {
  35. NF_DN_PRI_FIRST = INT_MIN,
  36. NF_DN_PRI_CONNTRACK = -200,
  37. NF_DN_PRI_MANGLE = -150,
  38. NF_DN_PRI_NAT_DST = -100,
  39. NF_DN_PRI_FILTER = 0,
  40. NF_DN_PRI_NAT_SRC = 100,
  41. NF_DN_PRI_DNRTMSG = 200,
  42. NF_DN_PRI_LAST = INT_MAX,
  43. };
  44. struct nf_dn_rtmsg {
  45. int nfdn_ifindex;
  46. };
  47. #define NFDN_RTMSG(r) ((unsigned char *)(r) + NLMSG_ALIGN(sizeof(struct nf_dn_rtmsg)))
  48. #define DNRMG_L1_GROUP 0x01
  49. #define DNRMG_L2_GROUP 0x02
  50. #endif /*__LINUX_DECNET_NETFILTER_H*/