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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _IF_TUNNEL_H_
  2. #define _IF_TUNNEL_H_
  3. #define SIOCGETTUNNEL   (SIOCDEVPRIVATE + 0)
  4. #define SIOCADDTUNNEL   (SIOCDEVPRIVATE + 1)
  5. #define SIOCDELTUNNEL   (SIOCDEVPRIVATE + 2)
  6. #define SIOCCHGTUNNEL   (SIOCDEVPRIVATE + 3)
  7. #define GRE_CSUM __constant_htons(0x8000)
  8. #define GRE_ROUTING __constant_htons(0x4000)
  9. #define GRE_KEY __constant_htons(0x2000)
  10. #define GRE_SEQ __constant_htons(0x1000)
  11. #define GRE_STRICT __constant_htons(0x0800)
  12. #define GRE_REC __constant_htons(0x0700)
  13. #define GRE_FLAGS __constant_htons(0x00F8)
  14. #define GRE_VERSION __constant_htons(0x0007)
  15. struct ip_tunnel_parm
  16. {
  17. char name[IFNAMSIZ];
  18. int link;
  19. __u16 i_flags;
  20. __u16 o_flags;
  21. __u32 i_key;
  22. __u32 o_key;
  23. struct iphdr iph;
  24. };
  25. #endif /* _IF_TUNNEL_H_ */