This source file includes following definitions.
- __ntohl
 
- __constant_ntohl
 
- __ntohs
 
- __constant_ntohs
 
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 
  10 
  11 
  12 
  13 
  14 
  15 
  16 
  17 
  18 #ifndef _LINUX_IN_H
  19 #define _LINUX_IN_H
  20 
  21 
  22 
  23 enum {
  24   IPPROTO_IP = 0,               
  25   IPPROTO_ICMP = 1,             
  26   IPPROTO_GGP = 2,              
  27   IPPROTO_TCP = 6,              
  28   IPPROTO_EGP = 8,              
  29   IPPROTO_PUP = 12,             
  30   IPPROTO_UDP = 17,             
  31   IPPROTO_IDP = 22,             
  32 
  33   IPPROTO_RAW = 255,            
  34   IPPROTO_MAX
  35 };
  36 
  37 
  38 
  39 struct in_addr {
  40         unsigned long int       s_addr;
  41 };
  42 
  43 
  44 
  45 #define __SOCK_SIZE__   16              
  46 struct sockaddr_in {
  47   short int             sin_family;     
  48   unsigned short int    sin_port;       
  49   struct in_addr        sin_addr;       
  50 
  51   
  52   unsigned char         __pad[__SOCK_SIZE__ - sizeof(short int) -
  53                         sizeof(unsigned short int) - sizeof(struct in_addr)];
  54 };
  55 #define sin_zero        __pad           
  56 
  57 
  58 
  59 
  60 
  61 
  62 
  63 #define IN_CLASSA(a)            ((((long int) (a)) & 0x80000000) == 0)
  64 #define IN_CLASSA_NET           0xff000000
  65 #define IN_CLASSA_NSHIFT        24
  66 #define IN_CLASSA_HOST          (0xffffffff & ~IN_CLASSA_NET)
  67 #define IN_CLASSA_MAX           128
  68 
  69 #define IN_CLASSB(a)            ((((long int) (a)) & 0xc0000000) == 0x80000000)
  70 #define IN_CLASSB_NET           0xffff0000
  71 #define IN_CLASSB_NSHIFT        16
  72 #define IN_CLASSB_HOST          (0xffffffff & ~IN_CLASSB_NET)
  73 #define IN_CLASSB_MAX           65536
  74 
  75 #define IN_CLASSC(a)            ((((long int) (a)) & 0xc0000000) == 0xc0000000)
  76 #define IN_CLASSC_NET           0xffffff00
  77 #define IN_CLASSC_NSHIFT        8
  78 #define IN_CLASSC_HOST          (0xffffffff & ~IN_CLASSC_NET)
  79 
  80 #define IN_CLASSD(a)            ((((long int) (a)) & 0xf0000000) == 0xe0000000)
  81 #define IN_MULTICAST(a)         IN_CLASSD(a)
  82 
  83 #define IN_EXPERIMENTAL(a)      ((((long int) (a)) & 0xe0000000) == 0xe0000000)
  84 #define IN_BADCLASS(a)          ((((long int) (a)) & 0xf0000000) == 0xf0000000)
  85 
  86 
  87 #define INADDR_ANY              ((unsigned long int) 0x00000000)
  88 
  89 
  90 #define INADDR_BROADCAST        ((unsigned long int) 0xffffffff)
  91 
  92 
  93 #define INADDR_NONE             0xffffffff
  94 
  95 
  96 #define IN_LOOPBACKNET          127
  97 
  98 
  99 #define INADDR_LOOPBACK         0x7f000001      
 100 
 101 
 102 
 103 
 104 
 105 
 106 
 107 #if 0
 108 # define IP_OPTIONS     1               
 109 #endif
 110 #define IP_HDRINCL      2               
 111 
 112 
 113 
 114 #undef ntohl
 115 #undef ntohs
 116 #undef htonl
 117 #undef htons
 118 
 119 extern unsigned long int        ntohl(unsigned long int);
 120 extern unsigned short int       ntohs(unsigned short int);
 121 extern unsigned long int        htonl(unsigned long int);
 122 extern unsigned short int       htons(unsigned short int);
 123 
 124 static __inline__ unsigned long int
 125 __ntohl(unsigned long int x)
     
 126 {
 127         __asm__("xchgb %b0,%h0\n\t"     
 128                 "rorl $16,%0\n\t"       
 129                 "xchgb %b0,%h0"         
 130                 :"=q" (x)
 131                 : "0" (x));
 132         return x;
 133 }
 134 
 135 static __inline__ unsigned long int
 136 __constant_ntohl(unsigned long int x)
     
 137 {
 138         return (((x & 0x000000ffU) << 24) |
 139                 ((x & 0x0000ff00U) <<  8) |
 140                 ((x & 0x00ff0000U) >>  8) |
 141                 ((x & 0xff000000U) >> 24));
 142 }
 143 
 144 static __inline__ unsigned short int
 145 __ntohs(unsigned short int x)
     
 146 {
 147         __asm__("xchgb %b0,%h0"         
 148                 : "=q" (x)
 149                 :  "0" (x));
 150         return x;
 151 }
 152 
 153 static __inline__ unsigned short int
 154 __constant_ntohs(unsigned short int x)
     
 155 {
 156         return (((x & 0x00ff) << 8) |
 157                 ((x & 0xff00) >> 8));
 158 }
 159 
 160 #define __htonl(x) __ntohl(x)
 161 #define __htons(x) __ntohs(x)
 162 #define __constant_htonl(x) __constant_ntohl(x)
 163 #define __constant_htons(x) __constant_ntohs(x)
 164 
 165 #ifdef  __OPTIMIZE__
 166 #  define ntohl(x) \
 167 (__builtin_constant_p((long)(x)) ? \
 168  __constant_ntohl((x)) : \
 169  __ntohl((x)))
 170 #  define ntohs(x) \
 171 (__builtin_constant_p((short)(x)) ? \
 172  __constant_ntohs((x)) : \
 173  __ntohs((x)))
 174 #  define htonl(x) \
 175 (__builtin_constant_p((long)(x)) ? \
 176  __constant_htonl((x)) : \
 177  __htonl((x)))
 178 #  define htons(x) \
 179 (__builtin_constant_p((short)(x)) ? \
 180  __constant_htons((x)) : \
 181  __htons((x)))
 182 #endif
 183 
 184 #endif