home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / winsock.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  38KB  |  1,086 lines

  1. /* WINSOCK.H--definitions to be used with the WINSOCK.DLL
  2.  * Copyright (c) 1993-1999, Microsoft Corp. All rights reserved.
  3.  *
  4.  * This header file corresponds to version 1.1 of the Windows Sockets specification.
  5.  *
  6.  * This file includes parts which are Copyright (c) 1982-1986 Regents
  7.  * of the University of California.  All rights reserved.  The
  8.  * Berkeley Software License Agreement specifies the terms and
  9.  * conditions for redistribution.
  10.  *
  11.  */
  12.  
  13. #ifndef _WINSOCKAPI_
  14. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  15. #define _WINSOCKAPI_
  16.  
  17. #if _MSC_VER > 1000
  18. #pragma once
  19. #endif
  20.  
  21. /*
  22.  * Pull in WINDOWS.H if necessary
  23.  */
  24. #ifndef _INC_WINDOWS
  25. #include <windows.h>
  26. #endif /* _INC_WINDOWS */
  27.  
  28. /*
  29.  * Basic system type definitions, taken from the BSD file sys/types.h.
  30.  */
  31. typedef unsigned char   u_char;
  32. typedef unsigned short  u_short;
  33. typedef unsigned int    u_int;
  34. typedef unsigned long   u_long;
  35.  
  36. /*
  37.  * The new type to be used in all
  38.  * instances which refer to sockets.
  39.  */
  40.  
  41. typedef UINT_PTR        SOCKET;
  42.  
  43. /*
  44.  * Select uses arrays of SOCKETs.  These macros manipulate such
  45.  * arrays.  FD_SETSIZE may be defined by the user before including
  46.  * this file, but the default here should be >= 64.
  47.  *
  48.  * CAVEAT IMPLEMENTOR and USER: THESE MACROS AND TYPES MUST BE
  49.  * INCLUDED IN WINSOCK.H EXACTLY AS SHOWN HERE.
  50.  */
  51. #ifndef FD_SETSIZE
  52. #define FD_SETSIZE      64
  53. #endif /* FD_SETSIZE */
  54.  
  55. typedef struct fd_set {
  56.         u_int   fd_count;               /* how many are SET? */
  57.         SOCKET  fd_array[FD_SETSIZE];   /* an array of SOCKETs */
  58. } fd_set;
  59.  
  60. #ifdef __cplusplus
  61. extern "C" {
  62. #endif
  63.  
  64. extern int PASCAL FAR __WSAFDIsSet(SOCKET, fd_set FAR *);
  65.  
  66. #ifdef __cplusplus
  67. }
  68. #endif
  69.  
  70.  
  71. #define FD_CLR(fd, set) do { \
  72.     u_int __i; \
  73.     for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count ; __i++) { \
  74.         if (((fd_set FAR *)(set))->fd_array[__i] == fd) { \
  75.             while (__i < ((fd_set FAR *)(set))->fd_count-1) { \
  76.                 ((fd_set FAR *)(set))->fd_array[__i] = \
  77.                     ((fd_set FAR *)(set))->fd_array[__i+1]; \
  78.                 __i++; \
  79.             } \
  80.             ((fd_set FAR *)(set))->fd_count--; \
  81.             break; \
  82.         } \
  83.     } \
  84. } while(0)
  85.  
  86. #define FD_SET(fd, set) do { \
  87.     if (((fd_set FAR *)(set))->fd_count < FD_SETSIZE) \
  88.         ((fd_set FAR *)(set))->fd_array[((fd_set FAR *)(set))->fd_count++]=(fd);\
  89. } while(0)
  90.  
  91. #define FD_ZERO(set) (((fd_set FAR *)(set))->fd_count=0)
  92.  
  93. #define FD_ISSET(fd, set) __WSAFDIsSet((SOCKET)(fd), (fd_set FAR *)(set))
  94.  
  95. /*
  96.  * Structure used in select() call, taken from the BSD file sys/time.h.
  97.  */
  98. struct timeval {
  99.         long    tv_sec;         /* seconds */
  100.         long    tv_usec;        /* and microseconds */
  101. };
  102.  
  103. /*
  104.  * Operations on timevals.
  105.  *
  106.  * NB: timercmp does not work for >= or <=.
  107.  */
  108. #define timerisset(tvp)         ((tvp)->tv_sec || (tvp)->tv_usec)
  109. #define timercmp(tvp, uvp, cmp) \
  110.         ((tvp)->tv_sec cmp (uvp)->tv_sec || \
  111.          (tvp)->tv_sec == (uvp)->tv_sec && (tvp)->tv_usec cmp (uvp)->tv_usec)
  112. #define timerclear(tvp)         (tvp)->tv_sec = (tvp)->tv_usec = 0
  113.  
  114. /*
  115.  * Commands for ioctlsocket(),  taken from the BSD file fcntl.h.
  116.  *
  117.  *
  118.  * Ioctl's have the command encoded in the lower word,
  119.  * and the size of any in or out parameters in the upper
  120.  * word.  The high 2 bits of the upper word are used
  121.  * to encode the in/out status of the parameter; for now
  122.  * we restrict parameters to at most 128 bytes.
  123.  */
  124. #define IOCPARM_MASK    0x7f            /* parameters must be < 128 bytes */
  125. #define IOC_VOID        0x20000000      /* no parameters */
  126. #define IOC_OUT         0x40000000      /* copy out parameters */
  127. #define IOC_IN          0x80000000      /* copy in parameters */
  128. #define IOC_INOUT       (IOC_IN|IOC_OUT)
  129.                                         /* 0x20000000 distinguishes new &
  130.                                            old ioctl's */
  131. #define _IO(x,y)        (IOC_VOID|((x)<<8)|(y))
  132.  
  133. #define _IOR(x,y,t)     (IOC_OUT|(((long)sizeof(t)&IOCPARM_MASK)<<16)|((x)<<8)|(y))
  134.  
  135. #define _IOW(x,y,t)     (IOC_IN|(((long)sizeof(t)&IOCPARM_MASK)<<16)|((x)<<8)|(y))
  136.  
  137. #define FIONREAD    _IOR('f', 127, u_long) /* get # bytes to read */
  138. #define FIONBIO     _IOW('f', 126, u_long) /* set/clear non-blocking i/o */
  139. #define FIOASYNC    _IOW('f', 125, u_long) /* set/clear async i/o */
  140.  
  141. /* Socket I/O Controls */
  142. #define SIOCSHIWAT  _IOW('s',  0, u_long)  /* set high watermark */
  143. #define SIOCGHIWAT  _IOR('s',  1, u_long)  /* get high watermark */
  144. #define SIOCSLOWAT  _IOW('s',  2, u_long)  /* set low watermark */
  145. #define SIOCGLOWAT  _IOR('s',  3, u_long)  /* get low watermark */
  146. #define SIOCATMARK  _IOR('s',  7, u_long)  /* at oob mark? */
  147.  
  148. /*
  149.  * Structures returned by network data base library, taken from the
  150.  * BSD file netdb.h.  All addresses are supplied in host order, and
  151.  * returned in network order (suitable for use in system calls).
  152.  */
  153.  
  154. struct  hostent {
  155.         char    FAR * h_name;           /* official name of host */
  156.         char    FAR * FAR * h_aliases;  /* alias list */
  157.         short   h_addrtype;             /* host address type */
  158.         short   h_length;               /* length of address */
  159.         char    FAR * FAR * h_addr_list; /* list of addresses */
  160. #define h_addr  h_addr_list[0]          /* address, for backward compat */
  161. };
  162.  
  163. /*
  164.  * It is assumed here that a network number
  165.  * fits in 32 bits.
  166.  */
  167. struct  netent {
  168.         char    FAR * n_name;           /* official name of net */
  169.         char    FAR * FAR * n_aliases;  /* alias list */
  170.         short   n_addrtype;             /* net address type */
  171.         u_long  n_net;                  /* network # */
  172. };
  173.  
  174. struct  servent {
  175.         char    FAR * s_name;           /* official service name */
  176.         char    FAR * FAR * s_aliases;  /* alias list */
  177. #ifdef _WIN64
  178.         char    FAR * s_proto;          /* protocol to use */
  179.         short   s_port;                 /* port # */
  180. #else
  181.         short   s_port;                 /* port # */
  182.         char    FAR * s_proto;          /* protocol to use */
  183. #endif
  184. };
  185.  
  186. struct  protoent {
  187.         char    FAR * p_name;           /* official protocol name */
  188.         char    FAR * FAR * p_aliases;  /* alias list */
  189.         short   p_proto;                /* protocol # */
  190. };
  191.  
  192. /*
  193.  * Constants and structures defined by the internet system,
  194.  * Per RFC 790, September 1981, taken from the BSD file netinet/in.h.
  195.  */
  196.  
  197. /*
  198.  * Protocols
  199.  */
  200. #define IPPROTO_IP              0               /* dummy for IP */
  201. #define IPPROTO_ICMP            1               /* control message protocol */
  202. #define IPPROTO_IGMP            2               /* group management protocol */
  203. #define IPPROTO_GGP             3               /* gateway^2 (deprecated) */
  204. #define IPPROTO_TCP             6               /* tcp */
  205. #define IPPROTO_PUP             12              /* pup */
  206. #define IPPROTO_UDP             17              /* user datagram protocol */
  207. #define IPPROTO_IDP             22              /* xns idp */
  208. #define IPPROTO_ND              77              /* UNOFFICIAL net disk proto */
  209.  
  210. #define IPPROTO_RAW             255             /* raw IP packet */
  211. #define IPPROTO_MAX             256
  212.  
  213. /*
  214.  * Port/socket numbers: network standard functions
  215.  */
  216. #define IPPORT_ECHO             7
  217. #define IPPORT_DISCARD          9
  218. #define IPPORT_SYSTAT           11
  219. #define IPPORT_DAYTIME          13
  220. #define IPPORT_NETSTAT          15
  221. #define IPPORT_FTP              21
  222. #define IPPORT_TELNET           23
  223. #define IPPORT_SMTP             25
  224. #define IPPORT_TIMESERVER       37
  225. #define IPPORT_NAMESERVER       42
  226. #define IPPORT_WHOIS            43
  227. #define IPPORT_MTP              57
  228.  
  229. /*
  230.  * Port/socket numbers: host specific functions
  231.  */
  232. #define IPPORT_TFTP             69
  233. #define IPPORT_RJE              77
  234. #define IPPORT_FINGER           79
  235. #define IPPORT_TTYLINK          87
  236. #define IPPORT_SUPDUP           95
  237.  
  238. /*
  239.  * UNIX TCP sockets
  240.  */
  241. #define IPPORT_EXECSERVER       512
  242. #define IPPORT_LOGINSERVER      513
  243. #define IPPORT_CMDSERVER        514
  244. #define IPPORT_EFSSERVER        520
  245.  
  246. /*
  247.  * UNIX UDP sockets
  248.  */
  249. #define IPPORT_BIFFUDP          512
  250. #define IPPORT_WHOSERVER        513
  251. #define IPPORT_ROUTESERVER      520
  252.                                         /* 520+1 also used */
  253.  
  254. /*
  255.  * Ports < IPPORT_RESERVED are reserved for
  256.  * privileged processes (e.g. root).
  257.  */
  258. #define IPPORT_RESERVED         1024
  259.  
  260. /*
  261.  * Link numbers
  262.  */
  263. #define IMPLINK_IP              155
  264. #define IMPLINK_LOWEXPER        156
  265. #define IMPLINK_HIGHEXPER       158
  266.  
  267. /*
  268.  * Internet address (old style... should be updated)
  269.  */
  270. struct in_addr {
  271.         union {
  272.                 struct { u_char s_b1,s_b2,s_b3,s_b4; } S_un_b;
  273.                 struct { u_short s_w1,s_w2; } S_un_w;
  274.                 u_long S_addr;
  275.         } S_un;
  276. #define s_addr  S_un.S_addr
  277.                                 /* can be used for most tcp & ip code */
  278. #define s_host  S_un.S_un_b.s_b2
  279.                                 /* host on imp */
  280. #define s_net   S_un.S_un_b.s_b1
  281.                                 /* network */
  282. #define s_imp   S_un.S_un_w.s_w2
  283.                                 /* imp */
  284. #define s_impno S_un.S_un_b.s_b4
  285.                                 /* imp # */
  286. #define s_lh    S_un.S_un_b.s_b3
  287.                                 /* logical host */
  288. };
  289.  
  290. /*
  291.  * Definitions of bits in internet address integers.
  292.  * On subnets, the decomposition of addresses to host and net parts
  293.  * is done according to subnet mask, not the masks here.
  294.  */
  295. #define IN_CLASSA(i)            (((long)(i) & 0x80000000) == 0)
  296. #define IN_CLASSA_NET           0xff000000
  297. #define IN_CLASSA_NSHIFT        24
  298. #define IN_CLASSA_HOST          0x00ffffff
  299. #define IN_CLASSA_MAX           128
  300.  
  301. #define IN_CLASSB(i)            (((long)(i) & 0xc0000000) == 0x80000000)
  302. #define IN_CLASSB_NET           0xffff0000
  303. #define IN_CLASSB_NSHIFT        16
  304. #define IN_CLASSB_HOST          0x0000ffff
  305. #define IN_CLASSB_MAX           65536
  306.  
  307. #define IN_CLASSC(i)            (((long)(i) & 0xe0000000) == 0xc0000000)
  308. #define IN_CLASSC_NET           0xffffff00
  309. #define IN_CLASSC_NSHIFT        8
  310. #define IN_CLASSC_HOST          0x000000ff
  311.  
  312. #define INADDR_ANY              (u_long)0x00000000
  313. #define INADDR_LOOPBACK         0x7f000001
  314. #define INADDR_BROADCAST        (u_long)0xffffffff
  315. #define INADDR_NONE             0xffffffff
  316.  
  317. /*
  318.  * Socket address, internet style.
  319.  */
  320. struct sockaddr_in {
  321.         short   sin_family;
  322.         u_short sin_port;
  323.         struct  in_addr sin_addr;
  324.         char    sin_zero[8];
  325. };
  326.  
  327. #define WSADESCRIPTION_LEN      256
  328. #define WSASYS_STATUS_LEN       128
  329.  
  330. typedef struct WSAData {
  331.         WORD                    wVersion;
  332.         WORD                    wHighVersion;
  333. #ifdef _WIN64
  334.         unsigned short          iMaxSockets;
  335.         unsigned short          iMaxUdpDg;
  336.         char FAR *              lpVendorInfo;
  337.         char                    szDescription[WSADESCRIPTION_LEN+1];
  338.         char                    szSystemStatus[WSASYS_STATUS_LEN+1];
  339. #else
  340.         char                    szDescription[WSADESCRIPTION_LEN+1];
  341.         char                    szSystemStatus[WSASYS_STATUS_LEN+1];
  342.         unsigned short          iMaxSockets;
  343.         unsigned short          iMaxUdpDg;
  344.         char FAR *              lpVendorInfo;
  345. #endif
  346. } WSADATA;
  347.  
  348. typedef WSADATA FAR *LPWSADATA;
  349.  
  350. /*
  351.  * Options for use with [gs]etsockopt at the IP level.
  352.  */
  353. #define IP_OPTIONS          1           /* set/get IP per-packet options    */
  354. #define IP_MULTICAST_IF     2           /* set/get IP multicast interface   */
  355. #define IP_MULTICAST_TTL    3           /* set/get IP multicast timetolive  */
  356. #define IP_MULTICAST_LOOP   4           /* set/get IP multicast loopback    */
  357. #define IP_ADD_MEMBERSHIP   5           /* add  an IP group membership      */
  358. #define IP_DROP_MEMBERSHIP  6           /* drop an IP group membership      */
  359. #define IP_TTL              7           /* set/get IP Time To Live          */
  360. #define IP_TOS              8           /* set/get IP Type Of Service       */
  361. #define IP_DONTFRAGMENT     9           /* set/get IP Don't Fragment flag   */
  362.  
  363.  
  364. #define IP_DEFAULT_MULTICAST_TTL   1    /* normally limit m'casts to 1 hop  */
  365. #define IP_DEFAULT_MULTICAST_LOOP  1    /* normally hear sends if a member  */
  366. #define IP_MAX_MEMBERSHIPS         20   /* per socket; must fit in one mbuf */
  367.  
  368. /*
  369.  * Argument structure for IP_ADD_MEMBERSHIP and IP_DROP_MEMBERSHIP.
  370.  */
  371. struct ip_mreq {
  372.         struct in_addr  imr_multiaddr;  /* IP multicast address of group */
  373.         struct in_addr  imr_interface;  /* local IP address of interface */
  374. };
  375.  
  376. /*
  377.  * Definitions related to sockets: types, address families, options,
  378.  * taken from the BSD file sys/socket.h.
  379.  */
  380.  
  381. /*
  382.  * This is used instead of -1, since the
  383.  * SOCKET type is unsigned.
  384.  */
  385. #define INVALID_SOCKET  (SOCKET)(~0)
  386. #define SOCKET_ERROR            (-1)
  387.  
  388. /*
  389.  * Types
  390.  */
  391. #define SOCK_STREAM     1               /* stream socket */
  392. #define SOCK_DGRAM      2               /* datagram socket */
  393. #define SOCK_RAW        3               /* raw-protocol interface */
  394. #define SOCK_RDM        4               /* reliably-delivered message */
  395. #define SOCK_SEQPACKET  5               /* sequenced packet stream */
  396.  
  397. /*
  398.  * Option flags per-socket.
  399.  */
  400. #define SO_DEBUG        0x0001          /* turn on debugging info recording */
  401. #define SO_ACCEPTCONN   0x0002          /* socket has had listen() */
  402. #define SO_REUSEADDR    0x0004          /* allow local address reuse */
  403. #define SO_KEEPALIVE    0x0008          /* keep connections alive */
  404. #define SO_DONTROUTE    0x0010          /* just use interface addresses */
  405. #define SO_BROADCAST    0x0020          /* permit sending of broadcast msgs */
  406. #define SO_USELOOPBACK  0x0040          /* bypass hardware when possible */
  407. #define SO_LINGER       0x0080          /* linger on close if data present */
  408. #define SO_OOBINLINE    0x0100          /* leave received OOB data in line */
  409.  
  410. #define SO_DONTLINGER   (u_int)(~SO_LINGER)
  411.  
  412. /*
  413.  * Additional options.
  414.  */
  415. #define SO_SNDBUF       0x1001          /* send buffer size */
  416. #define SO_RCVBUF       0x1002          /* receive buffer size */
  417. #define SO_SNDLOWAT     0x1003          /* send low-water mark */
  418. #define SO_RCVLOWAT     0x1004          /* receive low-water mark */
  419. #define SO_SNDTIMEO     0x1005          /* send timeout */
  420. #define SO_RCVTIMEO     0x1006          /* receive timeout */
  421. #define SO_ERROR        0x1007          /* get error status and clear */
  422. #define SO_TYPE         0x1008          /* get socket type */
  423.  
  424. /*
  425.  * Options for connect and disconnect data and options.  Used only by
  426.  * non-TCP/IP transports such as DECNet, OSI TP4, etc.
  427.  */
  428. #define SO_CONNDATA     0x7000
  429. #define SO_CONNOPT      0x7001
  430. #define SO_DISCDATA     0x7002
  431. #define SO_DISCOPT      0x7003
  432. #define SO_CONNDATALEN  0x7004
  433. #define SO_CONNOPTLEN   0x7005
  434. #define SO_DISCDATALEN  0x7006
  435. #define SO_DISCOPTLEN   0x7007
  436.  
  437. /*
  438.  * Option for opening sockets for synchronous access.
  439.  */
  440. #define SO_OPENTYPE     0x7008
  441.  
  442. #define SO_SYNCHRONOUS_ALERT    0x10
  443. #define SO_SYNCHRONOUS_NONALERT 0x20
  444.  
  445. /*
  446.  * Other NT-specific options.
  447.  */
  448. #define SO_MAXDG        0x7009
  449. #define SO_MAXPATHDG    0x700A
  450. #define SO_UPDATE_ACCEPT_CONTEXT 0x700B
  451. #define SO_CONNECT_TIME 0x700C
  452.  
  453. /*
  454.  * TCP options.
  455.  */
  456. #define TCP_NODELAY     0x0001
  457. #define TCP_BSDURGENT   0x7000
  458.  
  459. /*
  460.  * Address families.
  461.  */
  462. #define AF_UNSPEC       0               /* unspecified */
  463. #define AF_UNIX         1               /* local to host (pipes, portals) */
  464. #define AF_INET         2               /* internetwork: UDP, TCP, etc. */
  465. #define AF_IMPLINK      3               /* arpanet imp addresses */
  466. #define AF_PUP          4               /* pup protocols: e.g. BSP */
  467. #define AF_CHAOS        5               /* mit CHAOS protocols */
  468. #define AF_IPX          6               /* IPX and SPX */
  469. #define AF_NS           6               /* XEROX NS protocols */
  470. #define AF_ISO          7               /* ISO protocols */
  471. #define AF_OSI          AF_ISO          /* OSI is ISO */
  472. #define AF_ECMA         8               /* european computer manufacturers */
  473. #define AF_DATAKIT      9               /* datakit protocols */
  474. #define AF_CCITT        10              /* CCITT protocols, X.25 etc */
  475. #define AF_SNA          11              /* IBM SNA */
  476. #define AF_DECnet       12              /* DECnet */
  477. #define AF_DLI          13              /* Direct data link interface */
  478. #define AF_LAT          14              /* LAT */
  479. #define AF_HYLINK       15              /* NSC Hyperchannel */
  480. #define AF_APPLETALK    16              /* AppleTalk */
  481. #define AF_NETBIOS      17              /* NetBios-style addresses */
  482. #define AF_VOICEVIEW    18              /* VoiceView */
  483. #define AF_FIREFOX      19              /* FireFox */
  484. #define AF_UNKNOWN1     20              /* Somebody is using this! */
  485. #define AF_BAN          21              /* Banyan */
  486.  
  487. #define AF_MAX          22
  488.  
  489. /*
  490.  * Structure used by kernel to store most
  491.  * addresses.
  492.  */
  493. struct sockaddr {
  494.         u_short sa_family;              /* address family */
  495.         char    sa_data[14];            /* up to 14 bytes of direct address */
  496. };
  497.  
  498. /*
  499.  * Structure used by kernel to pass protocol
  500.  * information in raw sockets.
  501.  */
  502. struct sockproto {
  503.         u_short sp_family;              /* address family */
  504.         u_short sp_protocol;            /* protocol */
  505. };
  506.  
  507. /*
  508.  * Protocol families, same as address families for now.
  509.  */
  510. #define PF_UNSPEC       AF_UNSPEC
  511. #define PF_UNIX         AF_UNIX
  512. #define PF_INET         AF_INET
  513. #define PF_IMPLINK      AF_IMPLINK
  514. #define PF_PUP          AF_PUP
  515. #define PF_CHAOS        AF_CHAOS
  516. #define PF_NS           AF_NS
  517. #define PF_IPX          AF_IPX
  518. #define PF_ISO          AF_ISO
  519. #define PF_OSI          AF_OSI
  520. #define PF_ECMA         AF_ECMA
  521. #define PF_DATAKIT      AF_DATAKIT
  522. #define PF_CCITT        AF_CCITT
  523. #define PF_SNA          AF_SNA
  524. #define PF_DECnet       AF_DECnet
  525. #define PF_DLI          AF_DLI
  526. #define PF_LAT          AF_LAT
  527. #define PF_HYLINK       AF_HYLINK
  528. #define PF_APPLETALK    AF_APPLETALK
  529. #define PF_VOICEVIEW    AF_VOICEVIEW
  530. #define PF_FIREFOX      AF_FIREFOX
  531. #define PF_UNKNOWN1     AF_UNKNOWN1
  532. #define PF_BAN          AF_BAN
  533.  
  534. #define PF_MAX          AF_MAX
  535.  
  536. /*
  537.  * Structure used for manipulating linger option.
  538.  */
  539. struct  linger {
  540.         u_short l_onoff;                /* option on/off */
  541.         u_short l_linger;               /* linger time */
  542. };
  543.  
  544. /*
  545.  * Level number for (get/set)sockopt() to apply to socket itself.
  546.  */
  547. #define SOL_SOCKET      0xffff          /* options for socket level */
  548.  
  549. /*
  550.  * Maximum queue length specifiable by listen.
  551.  */
  552. #define SOMAXCONN       5
  553.  
  554. #define MSG_OOB         0x1             /* process out-of-band data */
  555. #define MSG_PEEK        0x2             /* peek at incoming message */
  556. #define MSG_DONTROUTE   0x4             /* send without using routing tables */
  557.  
  558. #define MSG_MAXIOVLEN   16
  559.  
  560. #define MSG_PARTIAL     0x8000          /* partial send or recv for message xport */
  561.  
  562. /*
  563.  * Define constant based on rfc883, used by gethostbyxxxx() calls.
  564.  */
  565. #define MAXGETHOSTSTRUCT        1024
  566.  
  567. /*
  568.  * Define flags to be used with the WSAAsyncSelect() call.
  569.  */
  570. #define FD_READ         0x01
  571. #define FD_WRITE        0x02
  572. #define FD_OOB          0x04
  573. #define FD_ACCEPT       0x08
  574. #define FD_CONNECT      0x10
  575. #define FD_CLOSE        0x20
  576.  
  577. /*
  578.  * WinSock error codes are also defined in winerror.h
  579.  * Hence the IFDEF.
  580.  */
  581. #ifndef WSABASEERR
  582.  
  583. /*
  584.  * All Windows Sockets error constants are biased by WSABASEERR from
  585.  * the "normal"
  586.  */
  587. #define WSABASEERR              10000
  588. /*
  589.  * Windows Sockets definitions of regular Microsoft C error constants
  590.  */
  591. #define WSAEINTR                (WSABASEERR+4)
  592. #define WSAEBADF                (WSABASEERR+9)
  593. #define WSAEACCES               (WSABASEERR+13)
  594. #define WSAEFAULT               (WSABASEERR+14)
  595. #define WSAEINVAL               (WSABASEERR+22)
  596. #define WSAEMFILE               (WSABASEERR+24)
  597.  
  598. /*
  599.  * Windows Sockets definitions of regular Berkeley error constants
  600.  */
  601. #define WSAEWOULDBLOCK          (WSABASEERR+35)
  602. #define WSAEINPROGRESS          (WSABASEERR+36)
  603. #define WSAEALREADY             (WSABASEERR+37)
  604. #define WSAENOTSOCK             (WSABASEERR+38)
  605. #define WSAEDESTADDRREQ         (WSABASEERR+39)
  606. #define WSAEMSGSIZE             (WSABASEERR+40)
  607. #define WSAEPROTOTYPE           (WSABASEERR+41)
  608. #define WSAENOPROTOOPT          (WSABASEERR+42)
  609. #define WSAEPROTONOSUPPORT      (WSABASEERR+43)
  610. #define WSAESOCKTNOSUPPORT      (WSABASEERR+44)
  611. #define WSAEOPNOTSUPP           (WSABASEERR+45)
  612. #define WSAEPFNOSUPPORT         (WSABASEERR+46)
  613. #define WSAEAFNOSUPPORT         (WSABASEERR+47)
  614. #define WSAEADDRINUSE           (WSABASEERR+48)
  615. #define WSAEADDRNOTAVAIL        (WSABASEERR+49)
  616. #define WSAENETDOWN             (WSABASEERR+50)
  617. #define WSAENETUNREACH          (WSABASEERR+51)
  618. #define WSAENETRESET            (WSABASEERR+52)
  619. #define WSAECONNABORTED         (WSABASEERR+53)
  620. #define WSAECONNRESET           (WSABASEERR+54)
  621. #define WSAENOBUFS              (WSABASEERR+55)
  622. #define WSAEISCONN              (WSABASEERR+56)
  623. #define WSAENOTCONN             (WSABASEERR+57)
  624. #define WSAESHUTDOWN            (WSABASEERR+58)
  625. #define WSAETOOMANYREFS         (WSABASEERR+59)
  626. #define WSAETIMEDOUT            (WSABASEERR+60)
  627. #define WSAECONNREFUSED         (WSABASEERR+61)
  628. #define WSAELOOP                (WSABASEERR+62)
  629. #define WSAENAMETOOLONG         (WSABASEERR+63)
  630. #define WSAEHOSTDOWN            (WSABASEERR+64)
  631. #define WSAEHOSTUNREACH         (WSABASEERR+65)
  632. #define WSAENOTEMPTY            (WSABASEERR+66)
  633. #define WSAEPROCLIM             (WSABASEERR+67)
  634. #define WSAEUSERS               (WSABASEERR+68)
  635. #define WSAEDQUOT               (WSABASEERR+69)
  636. #define WSAESTALE               (WSABASEERR+70)
  637. #define WSAEREMOTE              (WSABASEERR+71)
  638.  
  639. #define WSAEDISCON              (WSABASEERR+101)
  640.  
  641. /*
  642.  * Extended Windows Sockets error constant definitions
  643.  */
  644. #define WSASYSNOTREADY          (WSABASEERR+91)
  645. #define WSAVERNOTSUPPORTED      (WSABASEERR+92)
  646. #define WSANOTINITIALISED       (WSABASEERR+93)
  647.  
  648. /*
  649.  * Error return codes from gethostbyname() and gethostbyaddr()
  650.  * (when using the resolver). Note that these errors are
  651.  * retrieved via WSAGetLastError() and must therefore follow
  652.  * the rules for avoiding clashes with error numbers from
  653.  * specific implementations or language run-time systems.
  654.  * For this reason the codes are based at WSABASEERR+1001.
  655.  * Note also that [WSA]NO_ADDRESS is defined only for
  656.  * compatibility purposes.
  657.  */
  658.  
  659.  
  660. /* Authoritative Answer: Host not found */
  661. #define WSAHOST_NOT_FOUND       (WSABASEERR+1001)
  662.  
  663. /* Non-Authoritative: Host not found, or SERVERFAIL */
  664. #define WSATRY_AGAIN            (WSABASEERR+1002)
  665.  
  666. /* Non recoverable errors, FORMERR, REFUSED, NOTIMP */
  667. #define WSANO_RECOVERY          (WSABASEERR+1003)
  668.  
  669. /* Valid name, no data record of requested type */
  670. #define WSANO_DATA              (WSABASEERR+1004)
  671.  
  672. /*
  673.  * WinSock error codes are also defined in winerror.h
  674.  * Hence the IFDEF.
  675.  */
  676. #endif /* ifdef WSABASEERR */
  677.  
  678. /*
  679.  * Compatibility macros.
  680.  */
  681.  
  682.  
  683. #define h_errno         WSAGetLastError()
  684. #define HOST_NOT_FOUND          WSAHOST_NOT_FOUND
  685. #define TRY_AGAIN               WSATRY_AGAIN
  686. #define NO_RECOVERY             WSANO_RECOVERY
  687. #define NO_DATA                 WSANO_DATA
  688. /* no address, look for MX record */
  689. #define WSANO_ADDRESS           WSANO_DATA
  690. #define NO_ADDRESS              WSANO_ADDRESS
  691.  
  692. /*
  693.  * Windows Sockets errors redefined as regular Berkeley error constants.
  694.  * These are commented out in Windows NT to avoid conflicts with errno.h.
  695.  * Use the WSA constants instead.
  696.  */
  697. #if 0
  698. #define EWOULDBLOCK             WSAEWOULDBLOCK
  699. #define EINPROGRESS             WSAEINPROGRESS
  700. #define EALREADY                WSAEALREADY
  701. #define ENOTSOCK                WSAENOTSOCK
  702. #define EDESTADDRREQ            WSAEDESTADDRREQ
  703. #define EMSGSIZE                WSAEMSGSIZE
  704. #define EPROTOTYPE              WSAEPROTOTYPE
  705. #define ENOPROTOOPT             WSAENOPROTOOPT
  706. #define EPROTONOSUPPORT         WSAEPROTONOSUPPORT
  707. #define ESOCKTNOSUPPORT         WSAESOCKTNOSUPPORT
  708. #define EOPNOTSUPP              WSAEOPNOTSUPP
  709. #define EPFNOSUPPORT            WSAEPFNOSUPPORT
  710. #define EAFNOSUPPORT            WSAEAFNOSUPPORT
  711. #define EADDRINUSE              WSAEADDRINUSE
  712. #define EADDRNOTAVAIL           WSAEADDRNOTAVAIL
  713. #define ENETDOWN                WSAENETDOWN
  714. #define ENETUNREACH             WSAENETUNREACH
  715. #define ENETRESET               WSAENETRESET
  716. #define ECONNABORTED            WSAECONNABORTED
  717. #define ECONNRESET              WSAECONNRESET
  718. #define ENOBUFS                 WSAENOBUFS
  719. #define EISCONN                 WSAEISCONN
  720. #define ENOTCONN                WSAENOTCONN
  721. #define ESHUTDOWN               WSAESHUTDOWN
  722. #define ETOOMANYREFS            WSAETOOMANYREFS
  723. #define ETIMEDOUT               WSAETIMEDOUT
  724. #define ECONNREFUSED            WSAECONNREFUSED
  725. #define ELOOP                   WSAELOOP
  726. #define ENAMETOOLONG            WSAENAMETOOLONG
  727. #define EHOSTDOWN               WSAEHOSTDOWN
  728. #define EHOSTUNREACH            WSAEHOSTUNREACH
  729. #define ENOTEMPTY               WSAENOTEMPTY
  730. #define EPROCLIM                WSAEPROCLIM
  731. #define EUSERS                  WSAEUSERS
  732. #define EDQUOT                  WSAEDQUOT
  733. #define ESTALE                  WSAESTALE
  734. #define EREMOTE                 WSAEREMOTE
  735. #endif
  736.  
  737. /* Socket function prototypes */
  738.  
  739. #ifdef __cplusplus
  740. extern "C" {
  741. #endif
  742.  
  743. SOCKET PASCAL FAR accept (
  744.                           IN SOCKET s,
  745.                           OUT struct sockaddr FAR *addr,
  746.                           IN OUT int FAR *addrlen);
  747.  
  748. int PASCAL FAR bind (
  749.                      IN SOCKET s,
  750.                      IN const struct sockaddr FAR *addr,
  751.                      IN int namelen);
  752.  
  753. int PASCAL FAR closesocket ( IN SOCKET s);
  754.  
  755. int PASCAL FAR connect (
  756.                         IN SOCKET s,
  757.                         IN const struct sockaddr FAR *name,
  758.                         IN int namelen);
  759.  
  760. int PASCAL FAR ioctlsocket (
  761.                             IN SOCKET s,
  762.                             IN long cmd,
  763.                             IN OUT u_long FAR *argp);
  764.  
  765. int PASCAL FAR getpeername (
  766.                             IN SOCKET s,
  767.                             OUT struct sockaddr FAR *name,
  768.                             IN OUT int FAR * namelen);
  769.  
  770. int PASCAL FAR getsockname (
  771.                             IN SOCKET s,
  772.                             OUT struct sockaddr FAR *name,
  773.                             IN OUT int FAR * namelen);
  774.  
  775. int PASCAL FAR getsockopt (
  776.                            IN SOCKET s,
  777.                            IN int level,
  778.                            IN int optname,
  779.                            OUT char FAR * optval,
  780.                            IN OUT int FAR *optlen);
  781.  
  782. u_long PASCAL FAR htonl ( IN u_long hostlong);
  783.  
  784. u_short PASCAL FAR htons (IN u_short hostshort);
  785.  
  786. unsigned long PASCAL FAR inet_addr (IN const char FAR * cp);
  787.  
  788. char FAR * PASCAL FAR inet_ntoa (IN struct in_addr in);
  789.  
  790. int PASCAL FAR listen (
  791.                        IN SOCKET s,
  792.                        IN int backlog);
  793.  
  794. u_long PASCAL FAR ntohl (IN u_long netlong);
  795.  
  796. u_short PASCAL FAR ntohs (IN u_short netshort);
  797.  
  798. int PASCAL FAR recv (
  799.                      IN SOCKET s,
  800.                      OUT char FAR * buf,
  801.                      IN int len,
  802.                      IN int flags);
  803.  
  804. int PASCAL FAR recvfrom (
  805.                          IN SOCKET s,
  806.                          OUT char FAR * buf,
  807.                          IN int len,
  808.                          IN int flags,
  809.                          OUT struct sockaddr FAR *from,
  810.                          IN OUT int FAR * fromlen);
  811.  
  812. int PASCAL FAR select (
  813.                         IN int nfds,
  814.                         IN OUT fd_set FAR *readfds,
  815.                         IN OUT fd_set FAR *writefds,
  816.                         IN OUT fd_set FAR *exceptfds,
  817.                         IN const struct timeval FAR *timeout);
  818.  
  819. int PASCAL FAR send (
  820.                      IN SOCKET s,
  821.                      IN const char FAR * buf,
  822.                      IN int len,
  823.                      IN int flags);
  824.  
  825. int PASCAL FAR sendto (
  826.                        IN SOCKET s,
  827.                        IN const char FAR * buf,
  828.                        IN int len,
  829.                        IN int flags,
  830.                        IN const struct sockaddr FAR *to,
  831.                        IN int tolen);
  832.  
  833. int PASCAL FAR setsockopt (
  834.                            IN SOCKET s,
  835.                            IN int level,
  836.                            IN int optname,
  837.                            IN const char FAR * optval,
  838.                            IN int optlen);
  839.  
  840. int PASCAL FAR shutdown (
  841.                          IN SOCKET s,
  842.                          IN int how);
  843.  
  844. SOCKET PASCAL FAR socket (
  845.                           IN int af,
  846.                           IN int type,
  847.                           IN int protocol);
  848.  
  849. /* Database function prototypes */
  850.  
  851. struct hostent FAR * PASCAL FAR gethostbyaddr(
  852.                                               IN const char FAR * addr,
  853.                                               IN int len,
  854.                                               IN int type);
  855.  
  856. struct hostent FAR * PASCAL FAR gethostbyname(IN const char FAR * name);
  857.  
  858. int PASCAL FAR gethostname (
  859.                             OUT char FAR * name,
  860.                             IN int namelen);
  861.  
  862. struct servent FAR * PASCAL FAR getservbyport(
  863.                                               IN int port,
  864.                                               IN const char FAR * proto);
  865.  
  866. struct servent FAR * PASCAL FAR getservbyname(
  867.                                               IN const char FAR * name,
  868.                                               IN const char FAR * proto);
  869.  
  870. struct protoent FAR * PASCAL FAR getprotobynumber(IN int proto);
  871.  
  872. struct protoent FAR * PASCAL FAR getprotobyname(IN const char FAR * name);
  873.  
  874. /* Microsoft Windows Extension function prototypes */
  875.  
  876. int PASCAL FAR WSAStartup(
  877.                           IN WORD wVersionRequired,
  878.                           OUT LPWSADATA lpWSAData);
  879.  
  880. int PASCAL FAR WSACleanup(void);
  881.  
  882. void PASCAL FAR WSASetLastError(IN int iError);
  883.  
  884. int PASCAL FAR WSAGetLastError(void);
  885.  
  886. BOOL PASCAL FAR WSAIsBlocking(void);
  887.  
  888. int PASCAL FAR WSAUnhookBlockingHook(void);
  889.  
  890. FARPROC PASCAL FAR WSASetBlockingHook(IN FARPROC lpBlockFunc);
  891.  
  892. int PASCAL FAR WSACancelBlockingCall(void);
  893.  
  894. HANDLE PASCAL FAR WSAAsyncGetServByName(
  895.                                         IN HWND hWnd,
  896.                                         IN u_int wMsg,
  897.                                         IN const char FAR * name,
  898.                                         IN const char FAR * proto,
  899.                                         OUT char FAR * buf,
  900.                                         IN int buflen);
  901.  
  902. HANDLE PASCAL FAR WSAAsyncGetServByPort(
  903.                                         IN HWND hWnd,
  904.                                         IN u_int wMsg,
  905.                                         IN int port,
  906.                                         IN const char FAR * proto,
  907.                                         OUT char FAR * buf,
  908.                                         IN int buflen);
  909.  
  910. HANDLE PASCAL FAR WSAAsyncGetProtoByName(
  911.                                          IN HWND hWnd,
  912.                                          IN u_int wMsg,
  913.                                          IN const char FAR * name,
  914.                                          OUT char FAR * buf,
  915.                                          IN int buflen);
  916.  
  917. HANDLE PASCAL FAR WSAAsyncGetProtoByNumber(
  918.                                            IN HWND hWnd,
  919.                                            IN u_int wMsg,
  920.                                            IN int number,
  921.                                            OUT char FAR * buf,
  922.                                            IN int buflen);
  923.  
  924. HANDLE PASCAL FAR WSAAsyncGetHostByName(
  925.                                         IN HWND hWnd,
  926.                                         IN u_int wMsg,
  927.                                         IN const char FAR * name,
  928.                                         OUT char FAR * buf,
  929.                                         IN int buflen);
  930.  
  931. HANDLE PASCAL FAR WSAAsyncGetHostByAddr(
  932.                                         IN HWND hWnd,
  933.                                         IN u_int wMsg,
  934.                                         IN const char FAR * addr,
  935.                                         IN int len,
  936.                                         IN int type,
  937.                                         OUT char FAR * buf,
  938.                                         IN int buflen);
  939.  
  940. int PASCAL FAR WSACancelAsyncRequest(IN HANDLE hAsyncTaskHandle);
  941.  
  942. int PASCAL FAR WSAAsyncSelect(
  943.                               IN SOCKET s,
  944.                               IN HWND hWnd,
  945.                               IN u_int wMsg,
  946.                               IN long lEvent);
  947.  
  948. int PASCAL FAR WSARecvEx (
  949.                           IN SOCKET s,
  950.                           OUT char FAR * buf,
  951.                           IN int len,
  952.                           IN OUT int FAR *flags);
  953.  
  954. typedef struct _TRANSMIT_FILE_BUFFERS {
  955.     PVOID Head;
  956.     DWORD HeadLength;
  957.     PVOID Tail;
  958.     DWORD TailLength;
  959. } TRANSMIT_FILE_BUFFERS, *PTRANSMIT_FILE_BUFFERS, *LPTRANSMIT_FILE_BUFFERS;
  960.  
  961. #define TF_DISCONNECT       0x01
  962. #define TF_REUSE_SOCKET     0x02
  963. #define TF_WRITE_BEHIND     0x04
  964.  
  965. BOOL
  966. PASCAL FAR
  967. TransmitFile (
  968.     IN SOCKET hSocket,
  969.     IN HANDLE hFile,
  970.     IN DWORD nNumberOfBytesToWrite,
  971.     IN DWORD nNumberOfBytesPerSend,
  972.     IN LPOVERLAPPED lpOverlapped,
  973.     IN LPTRANSMIT_FILE_BUFFERS lpTransmitBuffers,
  974.     IN DWORD dwReserved
  975.     );
  976.  
  977. BOOL
  978. PASCAL FAR
  979. AcceptEx (
  980.     IN SOCKET sListenSocket,
  981.     IN SOCKET sAcceptSocket,
  982.     IN PVOID lpOutputBuffer,
  983.     IN DWORD dwReceiveDataLength,
  984.     IN DWORD dwLocalAddressLength,
  985.     IN DWORD dwRemoteAddressLength,
  986.     OUT LPDWORD lpdwBytesReceived,
  987.     IN LPOVERLAPPED lpOverlapped
  988.     );
  989.  
  990. VOID
  991. PASCAL FAR
  992. GetAcceptExSockaddrs (
  993.     IN PVOID lpOutputBuffer,
  994.     IN DWORD dwReceiveDataLength,
  995.     IN DWORD dwLocalAddressLength,
  996.     IN DWORD dwRemoteAddressLength,
  997.     OUT struct sockaddr **LocalSockaddr,
  998.     OUT LPINT LocalSockaddrLength,
  999.     OUT struct sockaddr **RemoteSockaddr,
  1000.     OUT LPINT RemoteSockaddrLength
  1001.     );
  1002.  
  1003. #ifdef __cplusplus
  1004. }
  1005. #endif
  1006.  
  1007. /* Microsoft Windows Extended data types */
  1008. typedef struct sockaddr SOCKADDR;
  1009. typedef struct sockaddr *PSOCKADDR;
  1010. typedef struct sockaddr FAR *LPSOCKADDR;
  1011.  
  1012. typedef struct sockaddr_in SOCKADDR_IN;
  1013. typedef struct sockaddr_in *PSOCKADDR_IN;
  1014. typedef struct sockaddr_in FAR *LPSOCKADDR_IN;
  1015.  
  1016. typedef struct linger LINGER;
  1017. typedef struct linger *PLINGER;
  1018. typedef struct linger FAR *LPLINGER;
  1019.  
  1020. typedef struct in_addr IN_ADDR;
  1021. typedef struct in_addr *PIN_ADDR;
  1022. typedef struct in_addr FAR *LPIN_ADDR;
  1023.  
  1024. typedef struct fd_set FD_SET;
  1025. typedef struct fd_set *PFD_SET;
  1026. typedef struct fd_set FAR *LPFD_SET;
  1027.  
  1028. typedef struct hostent HOSTENT;
  1029. typedef struct hostent *PHOSTENT;
  1030. typedef struct hostent FAR *LPHOSTENT;
  1031.  
  1032. typedef struct servent SERVENT;
  1033. typedef struct servent *PSERVENT;
  1034. typedef struct servent FAR *LPSERVENT;
  1035.  
  1036. typedef struct protoent PROTOENT;
  1037. typedef struct protoent *PPROTOENT;
  1038. typedef struct protoent FAR *LPPROTOENT;
  1039.  
  1040. typedef struct timeval TIMEVAL;
  1041. typedef struct timeval *PTIMEVAL;
  1042. typedef struct timeval FAR *LPTIMEVAL;
  1043.  
  1044. /*
  1045.  * Windows message parameter composition and decomposition
  1046.  * macros.
  1047.  *
  1048.  * WSAMAKEASYNCREPLY is intended for use by the Windows Sockets implementation
  1049.  * when constructing the response to a WSAAsyncGetXByY() routine.
  1050.  */
  1051. #define WSAMAKEASYNCREPLY(buflen,error)     MAKELONG(buflen,error)
  1052. /*
  1053.  * WSAMAKESELECTREPLY is intended for use by the Windows Sockets implementation
  1054.  * when constructing the response to WSAAsyncSelect().
  1055.  */
  1056. #define WSAMAKESELECTREPLY(event,error)     MAKELONG(event,error)
  1057. /*
  1058.  * WSAGETASYNCBUFLEN is intended for use by the Windows Sockets application
  1059.  * to extract the buffer length from the lParam in the response
  1060.  * to a WSAGetXByY().
  1061.  */
  1062. #define WSAGETASYNCBUFLEN(lParam)           LOWORD(lParam)
  1063. /*
  1064.  * WSAGETASYNCERROR is intended for use by the Windows Sockets application
  1065.  * to extract the error code from the lParam in the response
  1066.  * to a WSAGetXByY().
  1067.  */
  1068. #define WSAGETASYNCERROR(lParam)            HIWORD(lParam)
  1069. /*
  1070.  * WSAGETSELECTEVENT is intended for use by the Windows Sockets application
  1071.  * to extract the event code from the lParam in the response
  1072.  * to a WSAAsyncSelect().
  1073.  */
  1074. #define WSAGETSELECTEVENT(lParam)           LOWORD(lParam)
  1075. /*
  1076.  * WSAGETSELECTERROR is intended for use by the Windows Sockets application
  1077.  * to extract the error code from the lParam in the response
  1078.  * to a WSAAsyncSelect().
  1079.  */
  1080. #define WSAGETSELECTERROR(lParam)           HIWORD(lParam)
  1081.  
  1082. #pragma option pop /*P_O_Pop*/
  1083. #endif  /* _WINSOCKAPI_ */
  1084.  
  1085.  
  1086.