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

嵌入式Linux

开发平台:

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 of the Internet Protocol.
  7.  *
  8.  * Version: @(#)in.h 1.0.1 04/21/93
  9.  *
  10.  * Authors: Original taken from the GNU Project <netinet/in.h> file.
  11.  * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12.  *
  13.  * This program is free software; you can redistribute it and/or
  14.  * modify it under the terms of the GNU General Public License
  15.  * as published by the Free Software Foundation; either version
  16.  * 2 of the License, or (at your option) any later version.
  17.  */
  18. #ifndef _LINUX_IN_H
  19. #define _LINUX_IN_H
  20. #include <linux/types.h>
  21. /* Standard well-defined IP protocols.  */
  22. enum {
  23.   IPPROTO_IP = 0, /* Dummy protocol for TCP */
  24.   IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
  25.   IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
  26.   IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
  27.   IPPROTO_TCP = 6, /* Transmission Control Protocol */
  28.   IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
  29.   IPPROTO_PUP = 12, /* PUP protocol */
  30.   IPPROTO_UDP = 17, /* User Datagram Protocol */
  31.   IPPROTO_IDP = 22, /* XNS IDP protocol */
  32.   IPPROTO_RSVP = 46, /* RSVP protocol */
  33.   IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
  34.   IPPROTO_IPV6  = 41, /* IPv6-in-IPv4 tunnelling */
  35.   IPPROTO_PIM    = 103, /* Protocol Independent Multicast */
  36.   IPPROTO_ESP = 50,            /* Encapsulation Security Payload protocol */
  37.   IPPROTO_AH = 51,             /* Authentication Header protocol       */
  38.   IPPROTO_COMP   = 108,                /* Compression Header protocol */
  39.   IPPROTO_RAW  = 255, /* Raw IP packets */
  40.   IPPROTO_MAX
  41. };
  42. /* Internet address. */
  43. struct in_addr {
  44. __u32 s_addr;
  45. };
  46. #define IP_TOS 1
  47. #define IP_TTL 2
  48. #define IP_HDRINCL 3
  49. #define IP_OPTIONS 4
  50. #define IP_ROUTER_ALERT 5
  51. #define IP_RECVOPTS 6
  52. #define IP_RETOPTS 7
  53. #define IP_PKTINFO 8
  54. #define IP_PKTOPTIONS 9
  55. #define IP_MTU_DISCOVER 10
  56. #define IP_RECVERR 11
  57. #define IP_RECVTTL 12
  58. #define IP_RECVTOS 13
  59. #define IP_MTU 14
  60. #define IP_FREEBIND 15
  61. /* BSD compatibility */
  62. #define IP_RECVRETOPTS IP_RETOPTS
  63. /* IP_MTU_DISCOVER values */
  64. #define IP_PMTUDISC_DONT 0 /* Never send DF frames */
  65. #define IP_PMTUDISC_WANT 1 /* Use per route hints */
  66. #define IP_PMTUDISC_DO 2 /* Always DF */
  67. #define IP_MULTICAST_IF 32
  68. #define IP_MULTICAST_TTL  33
  69. #define IP_MULTICAST_LOOP  34
  70. #define IP_ADD_MEMBERSHIP 35
  71. #define IP_DROP_MEMBERSHIP 36
  72. /* These need to appear somewhere around here */
  73. #define IP_DEFAULT_MULTICAST_TTL        1
  74. #define IP_DEFAULT_MULTICAST_LOOP       1
  75. /* Request struct for multicast socket ops */
  76. struct ip_mreq 
  77. {
  78. struct in_addr imr_multiaddr; /* IP multicast address of group */
  79. struct in_addr imr_interface; /* local IP address of interface */
  80. };
  81. struct ip_mreqn
  82. {
  83. struct in_addr imr_multiaddr; /* IP multicast address of group */
  84. struct in_addr imr_address; /* local IP address of interface */
  85. int imr_ifindex; /* Interface index */
  86. };
  87. struct in_pktinfo
  88. {
  89. int ipi_ifindex;
  90. struct in_addr ipi_spec_dst;
  91. struct in_addr ipi_addr;
  92. };
  93. /* Structure describing an Internet (IP) socket address. */
  94. #define __SOCK_SIZE__ 16 /* sizeof(struct sockaddr) */
  95. struct sockaddr_in {
  96.   sa_family_t sin_family; /* Address family */
  97.   unsigned short int sin_port; /* Port number */
  98.   struct in_addr sin_addr; /* Internet address */
  99.   /* Pad to size of `struct sockaddr'. */
  100.   unsigned char __pad[__SOCK_SIZE__ - sizeof(short int) -
  101. sizeof(unsigned short int) - sizeof(struct in_addr)];
  102. };
  103. #define sin_zero __pad /* for BSD UNIX comp. -FvK */
  104. /*
  105.  * Definitions of the bits in an Internet address integer.
  106.  * On subnets, host and network parts are found according
  107.  * to the subnet mask, not these masks.
  108.  */
  109. #define IN_CLASSA(a) ((((long int) (a)) & 0x80000000) == 0)
  110. #define IN_CLASSA_NET 0xff000000
  111. #define IN_CLASSA_NSHIFT 24
  112. #define IN_CLASSA_HOST (0xffffffff & ~IN_CLASSA_NET)
  113. #define IN_CLASSA_MAX 128
  114. #define IN_CLASSB(a) ((((long int) (a)) & 0xc0000000) == 0x80000000)
  115. #define IN_CLASSB_NET 0xffff0000
  116. #define IN_CLASSB_NSHIFT 16
  117. #define IN_CLASSB_HOST (0xffffffff & ~IN_CLASSB_NET)
  118. #define IN_CLASSB_MAX 65536
  119. #define IN_CLASSC(a) ((((long int) (a)) & 0xe0000000) == 0xc0000000)
  120. #define IN_CLASSC_NET 0xffffff00
  121. #define IN_CLASSC_NSHIFT 8
  122. #define IN_CLASSC_HOST (0xffffffff & ~IN_CLASSC_NET)
  123. #define IN_CLASSD(a) ((((long int) (a)) & 0xf0000000) == 0xe0000000)
  124. #define IN_MULTICAST(a) IN_CLASSD(a)
  125. #define IN_MULTICAST_NET 0xF0000000
  126. #define IN_EXPERIMENTAL(a) ((((long int) (a)) & 0xf0000000) == 0xf0000000)
  127. #define IN_BADCLASS(a) IN_EXPERIMENTAL((a))
  128. /* Address to accept any incoming messages. */
  129. #define INADDR_ANY ((unsigned long int) 0x00000000)
  130. /* Address to send to all hosts. */
  131. #define INADDR_BROADCAST ((unsigned long int) 0xffffffff)
  132. /* Address indicating an error return. */
  133. #define INADDR_NONE ((unsigned long int) 0xffffffff)
  134. /* Network number for local host loopback. */
  135. #define IN_LOOPBACKNET 127
  136. /* Address to loopback in software to local host.  */
  137. #define INADDR_LOOPBACK 0x7f000001 /* 127.0.0.1   */
  138. #define IN_LOOPBACK(a) ((((long int) (a)) & 0xff000000) == 0x7f000000)
  139. /* Defines for Multicast INADDR */
  140. #define INADDR_UNSPEC_GROUP    0xe0000000U /* 224.0.0.0   */
  141. #define INADDR_ALLHOSTS_GROUP  0xe0000001U /* 224.0.0.1   */
  142. #define INADDR_ALLRTRS_GROUP    0xe0000002U /* 224.0.0.2 */
  143. #define INADDR_MAX_LOCAL_GROUP  0xe00000ffU /* 224.0.0.255 */
  144. /* <asm/byteorder.h> contains the htonl type stuff.. */
  145. #include <asm/byteorder.h> 
  146. #ifdef __KERNEL__
  147. /* Some random defines to make it easier in the kernel.. */
  148. #define LOOPBACK(x) (((x) & htonl(0xff000000)) == htonl(0x7f000000))
  149. #define MULTICAST(x) (((x) & htonl(0xf0000000)) == htonl(0xe0000000))
  150. #define BADCLASS(x) (((x) & htonl(0xf0000000)) == htonl(0xf0000000))
  151. #define ZERONET(x) (((x) & htonl(0xff000000)) == htonl(0x00000000))
  152. #define LOCAL_MCAST(x) (((x) & htonl(0xFFFFFF00)) == htonl(0xE0000000))
  153. #endif
  154. #endif /* _LINUX_IN_H */