ip.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * INET An implementation of the TCP/IP protocol suite for the LINUX
  3.  * operating system.  INET is implemented using the  BSD Socket
  4.  * interface as the means of communication with the user level.
  5.  *
  6.  * Definitions for the IP protocol.
  7.  *
  8.  * Version: @(#)ip.h 1.0.2 04/28/93
  9.  *
  10.  * Authors: Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  11.  *
  12.  * This program is free software; you can redistribute it and/or
  13.  * modify it under the terms of the GNU General Public License
  14.  * as published by the Free Software Foundation; either version
  15.  * 2 of the License, or (at your option) any later version.
  16.  */
  17. #ifndef _LINUX_IP_H
  18. #define _LINUX_IP_H
  19. #include <asm/byteorder.h>
  20. /* SOL_IP socket options */
  21. #define IPTOS_TOS_MASK 0x1E
  22. #define IPTOS_TOS(tos) ((tos)&IPTOS_TOS_MASK)
  23. #define IPTOS_LOWDELAY 0x10
  24. #define IPTOS_THROUGHPUT 0x08
  25. #define IPTOS_RELIABILITY 0x04
  26. #define IPTOS_MINCOST 0x02
  27. #define IPTOS_PREC_MASK 0xE0
  28. #define IPTOS_PREC(tos) ((tos)&IPTOS_PREC_MASK)
  29. #define IPTOS_PREC_NETCONTROL           0xe0
  30. #define IPTOS_PREC_INTERNETCONTROL      0xc0
  31. #define IPTOS_PREC_CRITIC_ECP           0xa0
  32. #define IPTOS_PREC_FLASHOVERRIDE        0x80
  33. #define IPTOS_PREC_FLASH                0x60
  34. #define IPTOS_PREC_IMMEDIATE            0x40
  35. #define IPTOS_PREC_PRIORITY             0x20
  36. #define IPTOS_PREC_ROUTINE              0x00
  37. /* IP options */
  38. #define IPOPT_COPY 0x80
  39. #define IPOPT_CLASS_MASK 0x60
  40. #define IPOPT_NUMBER_MASK 0x1f
  41. #define IPOPT_COPIED(o) ((o)&IPOPT_COPY)
  42. #define IPOPT_CLASS(o) ((o)&IPOPT_CLASS_MASK)
  43. #define IPOPT_NUMBER(o) ((o)&IPOPT_NUMBER_MASK)
  44. #define IPOPT_CONTROL 0x00
  45. #define IPOPT_RESERVED1 0x20
  46. #define IPOPT_MEASUREMENT 0x40
  47. #define IPOPT_RESERVED2 0x60
  48. #define IPOPT_END (0 |IPOPT_CONTROL)
  49. #define IPOPT_NOOP (1 |IPOPT_CONTROL)
  50. #define IPOPT_SEC (2 |IPOPT_CONTROL|IPOPT_COPY)
  51. #define IPOPT_LSRR (3 |IPOPT_CONTROL|IPOPT_COPY)
  52. #define IPOPT_TIMESTAMP (4 |IPOPT_MEASUREMENT)
  53. #define IPOPT_RR (7 |IPOPT_CONTROL)
  54. #define IPOPT_SID (8 |IPOPT_CONTROL|IPOPT_COPY)
  55. #define IPOPT_SSRR (9 |IPOPT_CONTROL|IPOPT_COPY)
  56. #define IPOPT_RA (20|IPOPT_CONTROL|IPOPT_COPY)
  57. #define IPVERSION 4
  58. #define MAXTTL 255
  59. #define IPDEFTTL 64
  60. /* struct timestamp, struct route and MAX_ROUTES are removed.
  61.    REASONS: it is clear that nobody used them because:
  62.    - MAX_ROUTES value was wrong.
  63.    - "struct route" was wrong.
  64.    - "struct timestamp" had fatally misaligned bitfields and was completely unusable.
  65.  */
  66. #define IPOPT_OPTVAL 0
  67. #define IPOPT_OLEN   1
  68. #define IPOPT_OFFSET 2
  69. #define IPOPT_MINOFF 4
  70. #define MAX_IPOPTLEN 40
  71. #define IPOPT_NOP IPOPT_NOOP
  72. #define IPOPT_EOL IPOPT_END
  73. #define IPOPT_TS  IPOPT_TIMESTAMP
  74. #define IPOPT_TS_TSONLY 0 /* timestamps only */
  75. #define IPOPT_TS_TSANDADDR 1 /* timestamps and addresses */
  76. #define IPOPT_TS_PRESPEC 3 /* specified modules only */
  77. #ifdef __KERNEL__
  78. struct ip_options {
  79.   __u32 faddr; /* Saved first hop address */
  80.   unsigned char optlen;
  81.   unsigned char srr;
  82.   unsigned char rr;
  83.   unsigned char ts;
  84.   unsigned char is_setbyuser:1, /* Set by setsockopt? */
  85.                 is_data:1, /* Options in __data, rather than skb */
  86.                 is_strictroute:1, /* Strict source route */
  87.                 srr_is_hit:1, /* Packet destination addr was our one */
  88.                 is_changed:1, /* IP checksum more not valid */
  89.                 rr_needaddr:1, /* Need to record addr of outgoing dev */
  90.                 ts_needtime:1, /* Need to record timestamp */
  91.                 ts_needaddr:1; /* Need to record addr of outgoing dev  */
  92.   unsigned char router_alert;
  93.   unsigned char __pad1;
  94.   unsigned char __pad2;
  95.   unsigned char __data[0];
  96. };
  97. #define optlength(opt) (sizeof(struct ip_options) + opt->optlen)
  98. #endif
  99. struct iphdr {
  100. #if defined(__LITTLE_ENDIAN_BITFIELD)
  101. __u8 ihl:4,
  102. version:4;
  103. #elif defined (__BIG_ENDIAN_BITFIELD)
  104. __u8 version:4,
  105.    ihl:4;
  106. #else
  107. #error "Please fix <asm/byteorder.h>"
  108. #endif
  109. __u8 tos;
  110. __u16 tot_len;
  111. __u16 id;
  112. __u16 frag_off;
  113. __u8 ttl;
  114. __u8 protocol;
  115. __u16 check;
  116. __u32 saddr;
  117. __u32 daddr;
  118. /*The options start here. */
  119. };
  120. #endif /* _LINUX_IP_H */