sockets.h
上传用户:yyhongfa
上传日期:2013-01-18
资源大小:267k
文件大小:10k
开发平台:

C/C++

  1. /*
  2.  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
  3.  * All rights reserved. 
  4.  * 
  5.  * Redistribution and use in source and binary forms, with or without modification, 
  6.  * are permitted provided that the following conditions are met:
  7.  *
  8.  * 1. Redistributions of source code must retain the above copyright notice,
  9.  *    this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright notice,
  11.  *    this list of conditions and the following disclaimer in the documentation
  12.  *    and/or other materials provided with the distribution.
  13.  * 3. The name of the author may not be used to endorse or promote products
  14.  *    derived from this software without specific prior written permission. 
  15.  *
  16.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
  17.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
  18.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
  19.  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
  20.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
  21.  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
  22.  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
  23.  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
  24.  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
  25.  * OF SUCH DAMAGE.
  26.  *
  27.  * This file is part of the lwIP TCP/IP stack.
  28.  * 
  29.  * Author: Adam Dunkels <adam@sics.se>
  30.  *
  31.  */
  32. #ifndef __LWIP_SOCKETS_H__
  33. #define __LWIP_SOCKETS_H__
  34. #include "lwip/ip_addr.h"
  35. struct sockaddr_in {
  36.   u8_t sin_len;
  37.   u8_t sin_family;
  38.   u16_t sin_port;
  39.   struct in_addr sin_addr;
  40.   char sin_zero[8];
  41. };
  42. struct sockaddr {
  43.   u8_t sa_len;
  44.   u8_t sa_family;
  45.   char sa_data[14];
  46. };
  47. #ifndef socklen_t
  48. #  define socklen_t int
  49. #endif
  50. #define SOCK_STREAM     1
  51. #define SOCK_DGRAM      2
  52. #define SOCK_RAW        3
  53. /*
  54.  * Option flags per-socket.
  55.  */
  56. #define  SO_DEBUG  0x0001    /* turn on debugging info recording */
  57. #define  SO_ACCEPTCONN  0x0002    /* socket has had listen() */
  58. #define  SO_REUSEADDR  0x0004    /* allow local address reuse */
  59. #define  SO_KEEPALIVE  0x0008    /* keep connections alive */
  60. #define  SO_DONTROUTE  0x0010    /* just use interface addresses */
  61. #define  SO_BROADCAST  0x0020    /* permit sending of broadcast msgs */
  62. #define  SO_USELOOPBACK  0x0040    /* bypass hardware when possible */
  63. #define  SO_LINGER  0x0080    /* linger on close if data present */
  64. #define  SO_OOBINLINE  0x0100    /* leave received OOB data in line */
  65. #define  SO_REUSEPORT 0x0200 /* allow local address & port reuse */
  66. #define SO_DONTLINGER   (int)(~SO_LINGER)
  67. /*
  68.  * Additional options, not kept in so_options.
  69.  */
  70. #define SO_SNDBUF  0x1001    /* send buffer size */
  71. #define SO_RCVBUF  0x1002    /* receive buffer size */
  72. #define SO_SNDLOWAT  0x1003    /* send low-water mark */
  73. #define SO_RCVLOWAT  0x1004    /* receive low-water mark */
  74. #define SO_SNDTIMEO  0x1005    /* send timeout */
  75. #define SO_RCVTIMEO  0x1006    /* receive timeout */
  76. #define  SO_ERROR  0x1007    /* get error status and clear */
  77. #define  SO_TYPE    0x1008    /* get socket type */
  78. /*
  79.  * Structure used for manipulating linger option.
  80.  */
  81. struct linger {
  82.        int l_onoff;                /* option on/off */
  83.        int l_linger;               /* linger time */
  84. };
  85. /*
  86.  * Level number for (get/set)sockopt() to apply to socket itself.
  87.  */
  88. #define  SOL_SOCKET  0xfff    /* options for socket level */
  89. #define AF_UNSPEC       0
  90. #define AF_INET         2
  91. #define PF_INET         AF_INET
  92. #define PF_UNSPEC       AF_UNSPEC
  93. #define IPPROTO_IP      0
  94. #define IPPROTO_TCP     6
  95. #define IPPROTO_UDP     17
  96. #define INADDR_ANY      0
  97. #define INADDR_BROADCAST 0xffffffff
  98. /* Flags we can use with send and recv. */
  99. #define MSG_DONTWAIT    0x40            /* Nonblocking i/o for this operation only */
  100. /*
  101.  * Options for level IPPROTO_IP
  102.  */
  103. #define IP_TOS       1
  104. #define IP_TTL       2
  105. #define IPTOS_TOS_MASK          0x1E
  106. #define IPTOS_TOS(tos)          ((tos) & IPTOS_TOS_MASK)
  107. #define IPTOS_LOWDELAY          0x10
  108. #define IPTOS_THROUGHPUT        0x08
  109. #define IPTOS_RELIABILITY       0x04
  110. #define IPTOS_LOWCOST           0x02
  111. #define IPTOS_MINCOST           IPTOS_LOWCOST
  112. /*
  113.  * Definitions for IP precedence (also in ip_tos) (hopefully unused)
  114.  */
  115. #define IPTOS_PREC_MASK                 0xe0
  116. #define IPTOS_PREC(tos)                ((tos) & IPTOS_PREC_MASK)
  117. #define IPTOS_PREC_NETCONTROL           0xe0
  118. #define IPTOS_PREC_INTERNETCONTROL      0xc0
  119. #define IPTOS_PREC_CRITIC_ECP           0xa0
  120. #define IPTOS_PREC_FLASHOVERRIDE        0x80
  121. #define IPTOS_PREC_FLASH                0x60
  122. #define IPTOS_PREC_IMMEDIATE            0x40
  123. #define IPTOS_PREC_PRIORITY             0x20
  124. #define IPTOS_PREC_ROUTINE              0x00
  125. /*
  126.  * Commands for ioctlsocket(),  taken from the BSD file fcntl.h.
  127.  *
  128.  *
  129.  * Ioctl's have the command encoded in the lower word,
  130.  * and the size of any in or out parameters in the upper
  131.  * word.  The high 2 bits of the upper word are used
  132.  * to encode the in/out status of the parameter; for now
  133.  * we restrict parameters to at most 128 bytes.
  134.  */
  135. #if !defined(FIONREAD) || !defined(FIONBIO)
  136. #define IOCPARM_MASK    0x7f            /* parameters must be < 128 bytes */
  137. #define IOC_VOID        0x20000000      /* no parameters */
  138. #define IOC_OUT         0x40000000      /* copy out parameters */
  139. #define IOC_IN          0x80000000      /* copy in parameters */
  140. #define IOC_INOUT       (IOC_IN|IOC_OUT)
  141.                                         /* 0x20000000 distinguishes new &
  142.                                            old ioctl's */
  143. #define _IO(x,y)        (IOC_VOID|((x)<<8)|(y))
  144. #define _IOR(x,y,t)     (IOC_OUT|(((long)sizeof(t)&IOCPARM_MASK)<<16)|((x)<<8)|(y))
  145. #define _IOW(x,y,t)     (IOC_IN|(((long)sizeof(t)&IOCPARM_MASK)<<16)|((x)<<8)|(y))
  146. #endif
  147. #ifndef FIONREAD
  148. #define FIONREAD    _IOR('f', 127, unsigned long) /* get # bytes to read */
  149. #endif
  150. #ifndef FIONBIO
  151. #define FIONBIO     _IOW('f', 126, unsigned long) /* set/clear non-blocking i/o */
  152. #endif
  153. /* Socket I/O Controls */
  154. #ifndef SIOCSHIWAT
  155. #define SIOCSHIWAT  _IOW('s',  0, unsigned long)  /* set high watermark */
  156. #define SIOCGHIWAT  _IOR('s',  1, unsigned long)  /* get high watermark */
  157. #define SIOCSLOWAT  _IOW('s',  2, unsigned long)  /* set low watermark */
  158. #define SIOCGLOWAT  _IOR('s',  3, unsigned long)  /* get low watermark */
  159. #define SIOCATMARK  _IOR('s',  7, unsigned long)  /* at oob mark? */
  160. #endif
  161. #ifndef O_NONBLOCK
  162. #define O_NONBLOCK    04000U
  163. #endif
  164. #ifndef FD_SET
  165.   #undef  FD_SETSIZE
  166.   #define FD_SETSIZE    16
  167.   #define FD_SET(n, p)  ((p)->fd_bits[(n)/8] |=  (1 << ((n) & 7)))
  168.   #define FD_CLR(n, p)  ((p)->fd_bits[(n)/8] &= ~(1 << ((n) & 7)))
  169.   #define FD_ISSET(n,p) ((p)->fd_bits[(n)/8] &   (1 << ((n) & 7)))
  170.   #define FD_ZERO(p)    memset((void*)(p),0,sizeof(*(p)))
  171.   typedef struct fd_set {
  172.           unsigned char fd_bits [(FD_SETSIZE+7)/8];
  173.         } fd_set;
  174. /* 
  175.  * only define this in sockets.c so it does not interfere
  176.  * with other projects namespaces where timeval is present
  177.  */ 
  178. #ifndef LWIP_TIMEVAL_PRIVATE
  179. #define LWIP_TIMEVAL_PRIVATE 1
  180. #endif
  181. #if LWIP_TIMEVAL_PRIVATE
  182.   struct timeval {
  183.     long    tv_sec;         /* seconds */
  184.     long    tv_usec;        /* and microseconds */
  185.   };
  186. #endif
  187. #endif
  188. int lwip_accept(int s, struct sockaddr *addr, socklen_t *addrlen);
  189. int lwip_bind(int s, struct sockaddr *name, socklen_t namelen);
  190. int lwip_shutdown(int s, int how);
  191. int lwip_getpeername (int s, struct sockaddr *name, socklen_t *namelen);
  192. int lwip_getsockname (int s, struct sockaddr *name, socklen_t *namelen);
  193. int lwip_getsockopt (int s, int level, int optname, void *optval, socklen_t *optlen);
  194. int lwip_setsockopt (int s, int level, int optname, const void *optval, socklen_t optlen);
  195. int lwip_close(int s);
  196. int lwip_connect(int s, struct sockaddr *name, socklen_t namelen);
  197. int lwip_listen(int s, int backlog);
  198. int lwip_recv(int s, void *mem, int len, unsigned int flags);
  199. int lwip_read(int s, void *mem, int len);
  200. int lwip_recvfrom(int s, void *mem, int len, unsigned int flags,
  201.       struct sockaddr *from, socklen_t *fromlen);
  202. int lwip_send(int s, void *dataptr, int size, unsigned int flags);
  203. int lwip_sendto(int s, void *dataptr, int size, unsigned int flags,
  204.     struct sockaddr *to, socklen_t tolen);
  205. int lwip_socket(int domain, int type, int protocol);
  206. int lwip_write(int s, void *dataptr, int size);
  207. int lwip_select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset,
  208.                 struct timeval *timeout);
  209. int lwip_ioctl(int s, long cmd, void *argp);
  210. #if LWIP_COMPAT_SOCKETS
  211. #define accept(a,b,c)         lwip_accept(a,b,c)
  212. #define bind(a,b,c)           lwip_bind(a,b,c)
  213. #define shutdown(a,b)         lwip_shutdown(a,b)
  214. #define close(s)              lwip_close(s)
  215. #define connect(a,b,c)        lwip_connect(a,b,c)
  216. #define getsockname(a,b,c)    lwip_getsockname(a,b,c)
  217. #define getpeername(a,b,c)    lwip_getpeername(a,b,c)
  218. #define setsockopt(a,b,c,d,e) lwip_setsockopt(a,b,c,d,e)
  219. #define getsockopt(a,b,c,d,e) lwip_getsockopt(a,b,c,d,e)
  220. #define listen(a,b)           lwip_listen(a,b)
  221. #define recv(a,b,c,d)         lwip_recv(a,b,c,d)
  222. #define read(a,b,c)           lwip_read(a,b,c)
  223. #define recvfrom(a,b,c,d,e,f) lwip_recvfrom(a,b,c,d,e,f)
  224. #define send(a,b,c,d)         lwip_send(a,b,c,d)
  225. #define sendto(a,b,c,d,e,f)   lwip_sendto(a,b,c,d,e,f)
  226. #define socket(a,b,c)         lwip_socket(a,b,c)
  227. #define write(a,b,c)          lwip_write(a,b,c)
  228. #define select(a,b,c,d,e)     lwip_select(a,b,c,d,e)
  229. #define ioctlsocket(a,b,c)    lwip_ioctl(a,b,c)
  230. #endif /* LWIP_COMPAT_SOCKETS */
  231. #endif /* __LWIP_SOCKETS_H__ */