home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue6 / SDL.ZIP / !gcc / include / unixlib / bits / h / socket < prev   
Encoding:
Text File  |  2006-09-17  |  8.9 KB  |  268 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: $
  4.  * $Date: $
  5.  * $Revision: $
  6.  * $State: $
  7.  * $Author: $
  8.  *
  9.  ***************************************************************************/
  10.  
  11. /*
  12.  * File taken from glibc 2.2.5.
  13.  * Following changes were made:
  14.  *  - Changed "#include <bits/types.h>" into "#include <unixlib/types.h>"
  15.  */
  16.  
  17. /* System-specific socket constants and types.  Generic/4.3 BSD version.
  18.    Copyright (C) 1991,92,1994-1999,2000,2001 Free Software Foundation, Inc.
  19.    This file is part of the GNU C Library.
  20.  
  21.    The GNU C Library is free software; you can redistribute it and/or
  22.    modify it under the terms of the GNU Lesser General Public
  23.    License as published by the Free Software Foundation; either
  24.    version 2.1 of the License, or (at your option) any later version.
  25.  
  26.    The GNU C Library is distributed in the hope that it will be useful,
  27.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  28.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  29.    Lesser General Public License for more details.
  30.  
  31.    You should have received a copy of the GNU Lesser General Public
  32.    License along with the GNU C Library; if not, write to the Free
  33.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  34.    02111-1307 USA.  */
  35.  
  36. #ifndef __BITS_SOCKET_H
  37. #define __BITS_SOCKET_H    1
  38.  
  39. #if !defined __SYS_SOCKET_H && !defined __NETINET_IN_H
  40. # error "Never include <bits/socket.h> directly; use <sys/socket.h> instead."
  41. #endif
  42.  
  43. #include <limits.h>
  44. #include <unixlib/types.h>
  45.  
  46. #define    __need_size_t
  47. #include <stddef.h>
  48.  
  49. /* Type for length arguments in socket calls.  */
  50. #ifndef __socklen_t_defined
  51. typedef __socklen_t socklen_t;
  52. # define __socklen_t_defined
  53. #endif
  54.  
  55.  
  56. /* Types of sockets.  */
  57. enum __socket_type
  58. {
  59.   SOCK_STREAM = 1,        /* Sequenced, reliable, connection-based
  60.                    byte streams.  */
  61. #define SOCK_STREAM SOCK_STREAM
  62.   SOCK_DGRAM = 2,        /* Connectionless, unreliable datagrams
  63.                    of fixed maximum length.  */
  64. #define SOCK_DGRAM SOCK_DGRAM
  65.   SOCK_RAW = 3,            /* Raw protocol interface.  */
  66. #define SOCK_RAW SOCK_RAW
  67.   SOCK_RDM = 4,            /* Reliably-delivered messages.  */
  68. #define SOCK_RDM SOCK_RDM
  69.   SOCK_SEQPACKET = 5        /* Sequenced, reliable, connection-based,
  70.                    datagrams of fixed maximum length.  */
  71. #define SOCK_SEQPACKET SOCK_SEQPACKET
  72. };
  73.  
  74. /* Protocol families.  */
  75. #define    PF_UNSPEC    0    /* Unspecified.  */
  76. #define    PF_LOCAL    1    /* Local to host (pipes and file-domain).  */
  77. #define    PF_UNIX        PF_LOCAL /* Old BSD name for PF_LOCAL.  */
  78. #define    PF_FILE        PF_LOCAL /* POSIX name for PF_LOCAL.  */
  79. #define    PF_INET        2    /* IP protocol family.  */
  80. #define    PF_IMPLINK    3    /* ARPAnet IMP protocol.  */
  81. #define    PF_PUP        4    /* PUP protocols.  */
  82. #define    PF_CHAOS    5    /* MIT Chaos protocols.  */
  83. #define    PF_NS        6    /* Xerox NS protocols.  */
  84. #define    PF_ISO        7    /* ISO protocols.  */
  85. #define    PF_OSI        PF_ISO
  86. #define    PF_ECMA        8    /* ECMA protocols.  */
  87. #define    PF_DATAKIT    9    /* AT&T Datakit protocols.  */
  88. #define    PF_CCITT    10    /* CCITT protocols (X.25 et al).  */
  89. #define    PF_SNA        11    /* IBM SNA protocol.  */
  90. #define    PF_DECnet    12    /* DECnet protocols.  */
  91. #define    PF_DLI        13    /* Direct data link interface.  */
  92. #define    PF_LAT        14    /* DEC Local Area Transport protocol.  */
  93. #define    PF_HYLINK    15    /* NSC Hyperchannel protocol.  */
  94. #define    PF_APPLETALK    16    /* Don't use this.  */
  95. #define    PF_ROUTE    17    /* Internal Routing Protocol.  */
  96. #define    PF_LINK        18    /* Link layer interface.  */
  97. #define    PF_XTP        19    /* eXpress Transfer Protocol (no AF).  */
  98. #define    PF_COIP        20    /* Connection-oriented IP, aka ST II.  */
  99. #define    PF_CNT        21    /* Computer Network Technology.  */
  100. #define PF_RTIP        22    /* Help Identify RTIP packets.  **/
  101. #define    PF_IPX        23    /* Novell Internet Protocol.  */
  102. #define    PF_SIP        24    /* Simple Internet Protocol.  */
  103. #define PF_PIP        25    /* Help Identify PIP packets.  */
  104. #define PF_INET6    26    /* IP version 6.  */
  105. #define    PF_MAX        27
  106.  
  107. /* Address families.  */
  108. #define    AF_UNSPEC    PF_UNSPEC
  109. #define    AF_LOCAL    PF_LOCAL
  110. #define    AF_UNIX        PF_UNIX
  111. #define    AF_FILE        PF_FILE
  112. #define    AF_INET        PF_INET
  113. #define    AF_IMPLINK    PF_IMPLINK
  114. #define    AF_PUP        PF_PUP
  115. #define    AF_CHAOS    PF_CHAOS
  116. #define    AF_NS        PF_NS
  117. #define    AF_ISO        PF_ISO
  118. #define    AF_OSI        PF_OSI
  119. #define    AF_ECMA        PF_ECMA
  120. #define    AF_DATAKIT    PF_DATAKIT
  121. #define    AF_CCITT    PF_CCITT
  122. #define    AF_SNA        PF_SNA
  123. #define    AF_DECnet    PF_DECnet
  124. #define    AF_DLI        PF_DLI
  125. #define    AF_LAT        PF_LAT
  126. #define    AF_HYLINK    PF_HYLINK
  127. #define    AF_APPLETALK    PF_APPLETALK
  128. #define    AF_ROUTE    PF_ROUTE
  129. #define    AF_LINK        PF_LINK
  130. #define    pseudo_AF_XTP    PF_XTP
  131. #define    AF_COIP        PF_COIP
  132. #define    AF_CNT        PF_CNT
  133. #define pseudo_AF_RTIP    PF_RTIP
  134. #define    AF_IPX        PF_IPX
  135. #define    AF_SIP        PF_SIP
  136. #define pseudo_AF_PIP    PF_PIP
  137. #define AF_INET6    PF_INET6
  138. #define    AF_MAX        PF_MAX
  139.  
  140.  
  141. /* Get the definition of the macro to define the common sockaddr members.  */
  142. #include <bits/sockaddr.h>
  143.  
  144. /* Structure describing a generic socket address.  */
  145. struct sockaddr
  146.   {
  147.     __SOCKADDR_COMMON (sa_);    /* Common data: address family and length.  */
  148.     char sa_data[14];        /* Address data.  */
  149.   };
  150.  
  151.  
  152. /* Structure large enough to hold any socket address (with the historical
  153.    exception of AF_UNIX).  We reserve 128 bytes.  */
  154. #if ULONG_MAX > 0xffffffff
  155. # define __ss_aligntype    __uint64_t
  156. #else
  157. # define __ss_aligntype    __uint32_t
  158. #endif
  159. #define _SS_SIZE    128
  160. #define _SS_PADSIZE    (_SS_SIZE - (2 * sizeof (__ss_aligntype)))
  161.  
  162. struct sockaddr_storage
  163.   {
  164.     __SOCKADDR_COMMON (ss_);    /* Address family, etc.  */
  165.     __ss_aligntype __ss_align;    /* Force desired alignment.  */
  166.     char __ss_padding[_SS_PADSIZE];
  167.   };
  168.  
  169.  
  170. /* Bits in the FLAGS argument to `send', `recv', et al.  */
  171. enum
  172.   {
  173.     MSG_OOB        = 0x01,    /* Process out-of-band data.  */
  174. #define MSG_OOB MSG_OOB
  175.     MSG_PEEK        = 0x02,    /* Peek at incoming messages.  */
  176. #define MSG_PEEK MSG_PEEK
  177.     MSG_DONTROUTE    = 0x04,    /* Don't use local routing.  */
  178. #define MSG_DONTROUTE MSG_DONTROUTE
  179.     MSG_EOR        = 0x08,    /* Data completes record.  */
  180. #define MSG_EOR MSG_EOR
  181.     MSG_TRUNC        = 0x10,    /* Data discarded before delivery.  */
  182. #define MSG_TRUNC MSG_TRUNC
  183.     MSG_CTRUNC        = 0x20,    /* Control data lost before delivery.  */
  184. #define MSG_CTRUNC MSG_CTRUNC
  185.     MSG_WAITALL        = 0x40,    /* Wait for full request or error.  */
  186. #define MSG_WAITALL MSG_WAITALL
  187.     MSG_DONTWAIT    = 0x80    /* This message should be nonblocking.  */
  188. #define MSG_DONTWAIT MSG_DONTWAIT
  189.   };
  190.  
  191.  
  192. /* Structure describing messages sent by
  193.    `sendmsg' and received by `recvmsg'.  */
  194. struct msghdr
  195.   {
  196.     __ptr_t msg_name;        /* Address to send to/receive from.  */
  197.     socklen_t msg_namelen;    /* Length of address data.  */
  198.  
  199.     struct iovec *msg_iov;    /* Vector of data to send/receive into.  */
  200.     int msg_iovlen;        /* Number of elements in the vector.  */
  201.  
  202.     __ptr_t msg_accrights;    /* Access rights information.  */
  203.     socklen_t msg_accrightslen;    /* Length of access rights information.  */
  204.  
  205.     int msg_flags;        /* Flags in received message.  */
  206.   };
  207.  
  208.  
  209. /* Protocol number used to manipulate socket-level options
  210.    with `getsockopt' and `setsockopt'.  */
  211. #define    SOL_SOCKET    0xffff
  212.  
  213. /* Socket-level options for `getsockopt' and `setsockopt'.  */
  214. enum
  215.   {
  216.     SO_DEBUG = 0x0001,        /* Record debugging information.  */
  217. #define SO_DEBUG SO_DEBUG
  218.     SO_ACCEPTCONN = 0x0002,    /* Accept connections on socket.  */
  219. #define SO_ACCEPTCONN SO_ACCEPTCONN
  220.     SO_REUSEADDR = 0x0004,    /* Allow reuse of local addresses.  */
  221. #define SO_REUSEADDR SO_REUSEADDR
  222.     SO_KEEPALIVE = 0x0008,    /* Keep connections alive and send
  223.                    SIGPIPE when they die.  */
  224. #define SO_KEEPALIVE SO_KEEPALIVE
  225.     SO_DONTROUTE = 0x0010,    /* Don't do local routing.  */
  226. #define SO_DONTROUTE SO_DONTROUTE
  227.     SO_BROADCAST = 0x0020,    /* Allow transmission of
  228.                    broadcast messages.  */
  229. #define SO_BROADCAST SO_BROADCAST
  230.     SO_USELOOPBACK = 0x0040,    /* Use the software loopback to avoid
  231.                    hardware use when possible.  */
  232. #define SO_USELOOPBACK SO_USELOOPBACK
  233.     SO_LINGER = 0x0080,        /* Block on close of a reliable
  234.                    socket to transmit pending data.  */
  235. #define SO_LINGER SO_LINGER
  236.     SO_OOBINLINE = 0x0100,    /* Receive out-of-band data in-band.  */
  237. #define SO_OOBINLINE SO_OOBINLINE
  238.     SO_REUSEPORT = 0x0200,    /* Allow local address and port reuse.  */
  239. #define SO_REUSEPORT SO_REUSEPORT
  240.     SO_SNDBUF = 0x1001,        /* Send buffer size.  */
  241. #define SO_SNDBUF SO_SNDBUF
  242.     SO_RCVBUF = 0x1002,        /* Receive buffer.  */
  243. #define SO_RCVBUF SO_RCVBUF
  244.     SO_SNDLOWAT = 0x1003,    /* Send low-water mark.  */
  245. #define SO_SNDLOWAT SO_SNDLOWAT
  246.     SO_RCVLOWAT = 0x1004,    /* Receive low-water mark.  */
  247. #define SO_RCVLOWAT SO_RCVLOWAT
  248.     SO_SNDTIMEO = 0x1005,    /* Send timeout.  */
  249. #define SO_SNDTIMEO SO_SNDTIMEO
  250.     SO_RCVTIMEO = 0x1006,    /* Receive timeout.  */
  251. #define SO_RCVTIMEO SO_RCVTIMEO
  252.     SO_ERROR = 0x1007,        /* Get and clear error status.  */
  253. #define SO_ERROR SO_ERROR
  254.     SO_STYLE = 0x1008,        /* Get socket connection style.  */
  255. #define SO_STYLE SO_STYLE
  256.     SO_TYPE = SO_STYLE        /* Compatible name for SO_STYLE.  */
  257. #define SO_TYPE SO_TYPE
  258.   };
  259.  
  260. /* Structure used to manipulate the SO_LINGER option.  */
  261. struct linger
  262.   {
  263.     int l_onoff;        /* Nonzero to linger on close.  */
  264.     int l_linger;        /* Time to linger.  */
  265.   };
  266.  
  267. #endif    /* bits/socket.h */
  268.