socket.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1982, 1985, 1986 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that the above copyright notice and this paragraph are
  7.  * duplicated in all such forms and that any documentation,
  8.  * advertising materials, and other materials related to such
  9.  * distribution and use acknowledge that the software was developed
  10.  * by the University of California, Berkeley.  The name of the
  11.  * University may not be used to endorse or promote products derived
  12.  * from this software without specific prior written permission.
  13.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  14.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  15.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16.  *
  17.  * @(#)socket.h 7.3 (Berkeley) 6/27/88
  18.  */
  19. /*
  20.  * Definitions related to sockets: types, address families, options.
  21.  */
  22. #include <sys/stdsyms.h>
  23. #include <pthread/posix.h>
  24. #include <sys/cdefs.h>
  25. /*
  26.  * Types of sockets
  27.  */
  28. #define SOCK_STREAM 1 /* stream socket */
  29. #define SOCK_DGRAM 2 /* datagram socket */
  30. #define SOCK_RAW 3 /* raw-protocol interface */
  31. #define SOCK_RDM 4 /* reliably-delivered message */
  32. #define SOCK_SEQPACKET 5 /* sequenced packet stream */
  33. /*
  34.  * Option flags per-socket.
  35.  */
  36. #define SO_DEBUG 0x0001 /* turn on debugging info recording */
  37. #define SO_ACCEPTCONN 0x0002 /* socket has had listen() */
  38. #define SO_REUSEADDR 0x0004 /* allow local address reuse */
  39. #define SO_KEEPALIVE 0x0008 /* keep connections alive */
  40. #define SO_DONTROUTE 0x0010 /* just use interface addresses */
  41. #define SO_BROADCAST 0x0020 /* permit sending of broadcast msgs */
  42. #define SO_USELOOPBACK 0x0040 /* bypass hardware when possible */
  43. #define SO_LINGER 0x0080 /* linger on close if data present */
  44. #define SO_OOBINLINE 0x0100 /* leave received OOB data in line */
  45. /*
  46.  * Additional options, not kept in so_options.
  47.  */
  48. #define SO_SNDBUF 0x1001 /* send buffer size */
  49. #define SO_RCVBUF 0x1002 /* receive buffer size */
  50. #define SO_SNDLOWAT 0x1003 /* send low-water mark */
  51. #define SO_RCVLOWAT 0x1004 /* receive low-water mark */
  52. #define SO_SNDTIMEO 0x1005 /* send timeout */
  53. #define SO_RCVTIMEO 0x1006 /* receive timeout */
  54. #define SO_ERROR 0x1007 /* get error status and clear */
  55. #define SO_TYPE 0x1008 /* get socket type */
  56. #define SO_SND_COPYAVOID 0x1009 /* avoid copy on send*/
  57. #define SO_RCV_COPYAVOID 0x100a /* avoid copy on rcv */
  58. /*
  59.  * Level number for (get/set)sockopt() to apply to socket itself.
  60.  */
  61. #define SOL_SOCKET 0xffff /* options for socket level */
  62. /*
  63.  * Address families.
  64.  */
  65. #define AF_UNSPEC 0 /* unspecified */
  66. #define AF_UNIX 1 /* local to host (pipes, portals) */
  67. #define AF_INET 2 /* internetwork: UDP, TCP, etc. */
  68. #define AF_IMPLINK 3 /* arpanet imp addresses */
  69. #define AF_PUP 4 /* pup protocols: e.g. BSP */
  70. #define AF_CHAOS 5 /* mit CHAOS protocols */
  71. #define AF_NS 6 /* XEROX NS protocols */
  72. #define AF_NBS 7 /* nbs protocols */
  73. #define AF_ECMA 8 /* european computer manufacturers */
  74. #define AF_DATAKIT 9 /* datakit protocols */
  75. #define AF_CCITT 10 /* CCITT protocols, X.25 etc */
  76. #define AF_SNA 11 /* IBM SNA */
  77. #define AF_DECnet 12 /* DECnet */
  78. #define AF_DLI 13 /* Direct data link interface */
  79. #define AF_LAT 14 /* LAT */
  80. #define AF_HYLINK 15 /* NSC Hyperchannel */
  81. #define AF_APPLETALK 16 /* Apple Talk */
  82. #define AF_OTS 17 /* Used for OSI in the ifnets */
  83. #define AF_NIT 18 /* NIT */
  84. #define AF_MAX 19
  85. /*
  86.  * Structure used by kernel to store most
  87.  * addresses.
  88.  */
  89. struct sockaddr {
  90. unsigned short sa_family; /* address family */
  91. char           sa_data[14]; /* up to 14 bytes of direct address */
  92. };
  93. /*
  94.  * Structure used by kernel to pass protocol
  95.  * information in raw sockets.
  96.  */
  97. struct sockproto {
  98. unsigned short sp_family; /* address family */
  99. unsigned short sp_protocol; /* protocol */
  100. };
  101. /*
  102.  * Protocol families, same as address families for now.
  103.  */
  104. #define PF_UNSPEC AF_UNSPEC
  105. #define PF_UNIX AF_UNIX
  106. #define PF_INET AF_INET
  107. #define PF_IMPLINK AF_IMPLINK
  108. #define PF_PUP AF_PUP
  109. #define PF_CHAOS AF_CHAOS
  110. #define PF_NS AF_NS
  111. #define PF_NBS AF_NBS
  112. #define PF_ECMA AF_ECMA
  113. #define PF_DATAKIT AF_DATAKIT
  114. #define PF_CCITT AF_CCITT
  115. #define PF_SNA AF_SNA
  116. #define PF_DECnet AF_DECnet
  117. #define PF_DLI AF_DLI
  118. #define PF_LAT AF_LAT
  119. #define PF_HYLINK AF_HYLINK
  120. #define PF_APPLETALK AF_APPLETALK
  121. #define PF_MAX AF_MAX
  122. /*
  123.  * Maximum queue length specifiable by listen.
  124.  */
  125. #define SOMAXCONN 20
  126. /*
  127.  * Message header for recvmsg and sendmsg calls.
  128.  */
  129. struct msghdr {
  130. caddr_t msg_name; /* optional address */
  131. int msg_namelen; /* size of address */
  132. struct iovec *msg_iov; /* scatter/gather array */
  133. int msg_iovlen; /* # elements in msg_iov */
  134. caddr_t msg_accrights; /* access rights sent/received */
  135. int msg_accrightslen;
  136. };
  137. #define MSG_OOB 0x1 /* process out-of-band data */
  138. #define MSG_PEEK 0x2 /* peek at incoming message */
  139. #define MSG_DONTROUTE 0x4 /* send without using routing tables */
  140. #define MSG_MAXIOVLEN 16
  141. /* 
  142.  * Functions
  143.  */
  144. __BEGIN_DECLS
  145. int accept __P_((int, struct sockaddr *, int *));
  146. int bind __P_((int, const struct sockaddr *, int));
  147. int connect __P_((int, const struct sockaddr *, int));
  148. int listen __P_((int, int));
  149. int socket __P_((int, int, int));
  150. __END_DECLS