macsockets.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:7k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: macsockets.h,v 1.3.36.3 2004/07/09 01:46:47 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #if __MWERKS__
  50. #pragma once
  51. #endif
  52. #ifndef __MACSOCKETS__
  53. #define __MACSOCKETS__
  54. #ifdef __cplusplus
  55. extern "C" {
  56. #endif  /* __cplusplus */
  57. typedef unsigned char u_char;
  58. typedef unsigned short u_short;
  59. #ifndef _MAC_MACHO
  60. #ifndef mode_t
  61. typedef unsigned long mode_t;
  62. #endif
  63. #endif
  64. #ifdef OTUNIXERRORS
  65. #undef OTUNIXERRORS
  66. #endif
  67. #define OTUNIXERRORS 1
  68. #ifndef _STDIO
  69. #include <stdio.h>
  70. #endif
  71. #ifndef _MAC_MACHO
  72. #ifndef _STAT
  73. #include <stat.h>
  74. #endif
  75. #endif
  76. #ifndef _UTIME
  77. #include <utime.h>
  78. #endif
  79. #ifndef _MAC_MACHO
  80. #ifndef _UTSNAME
  81. #include <utsname.h>
  82. #endif
  83. #endif
  84. #ifndef _HXTYPES_H_
  85. #include "hxtypes.h"
  86. #endif
  87. /*
  88. // Not defined in OpenTransport.h
  89. #define EMFILE ELASTERRNO + 1
  90. #define ENFILE ELASTERRNO + 2
  91. #define ENOENT ELASTERRNO + 3
  92. #define ENOSPC ELASTERRNO + 4
  93. #define EROFS  ELASTERRNO + 5
  94. #define ESPIPE  ELASTERRNO + 6
  95. */
  96. /* Definitions related to sockets: types, address families, options */
  97. #define ntohl(x) (x)
  98. #define ntohs(x) (x)
  99. #define htonl(x) (x)
  100. #define htons(x) (x)
  101. /*
  102.  * Types
  103.  */
  104. #define SOCK_STREAM 1 /* stream socket */
  105. #define SOCK_DGRAM 2 /* datagram socket */
  106. #define SOCK_RAW 3 /* raw-protocol interface */
  107. #define SOCK_RDM 4 /* reliably-delivered message */
  108. #define SOCK_SEQPACKET 5 /* sequenced packet stream */
  109. /*
  110.  * Option flags per-socket.
  111.  */
  112. #define SO_DEBUG 0x0001 /* turn on debugging info recording */
  113. #define SO_ACCEPTCONN 0x0002 /* socket has had listen() */
  114. #define SO_REUSEADDR 0x0004 /* allow local address reuse */
  115. #define SO_KEEPALIVE 0x0008 /* keep connections alive */
  116. #define SO_DONTROUTE 0x0010 /* just use interface addresses */
  117. #define SO_BROADCAST 0x0020 /* permit sending of broadcast msgs */
  118. #define SO_USELOOPBACK 0x0040 /* bypass hardware when possible */
  119. #define SO_LINGER 0x0080 /* linger on close if data present */
  120. #define SO_OOBINLINE 0x0100 /* leave received OOB data in line */
  121. /*
  122.  * Additional options, not kept in so_options.
  123.  */
  124. #define SO_SNDBUF 0x1001 /* send buffer size */
  125. #define SO_RCVBUF 0x1002 /* receive buffer size */
  126. #define SO_SNDLOWAT 0x1003 /* send low-water mark */
  127. #define SO_RCVLOWAT 0x1004 /* receive low-water mark */
  128. #define SO_SNDTIMEO 0x1005 /* send timeout */
  129. #define SO_RCVTIMEO 0x1006 /* receive timeout */
  130. #define SO_ERROR 0x1007 /* get error status and clear */
  131. #define SO_TYPE 0x1008 /* get socket type */
  132. /*
  133.  * Structure used for manipulating linger option.
  134.  */
  135. struct linger {
  136. int l_onoff; /* option on/off */
  137. int l_linger; /* linger time */
  138. };
  139. /*
  140.  * Structures returned by network data base library.  All addresses are
  141.  * supplied in host order, and returned in network order (suitable for
  142.  * use in system calls).
  143.  */
  144. #if 0
  145. struct hostent {
  146. char *h_name; /* official name of host */
  147. char **h_aliases; /* alias list */
  148. int h_addrtype; /* host address type */
  149. int h_length; /* length of address */
  150. char **h_addr_list; /* list of addresses from name server */
  151. #define h_addr h_addr_list[0] /* address, for backward compatiblity */
  152. };
  153. #else
  154. struct hostent {
  155. unsigned long *h_addr;
  156. char *h_name; /* official name of host */
  157. };
  158. #endif
  159. #define PF_UNSPEC AF_UNSPEC /* unspecified  */
  160. #define PF_UNIX AF_UNIX /* local to host (pipes, portals)  */
  161. #define PF_INET AF_INET /* internetwork: UDP, TCP, etc.  */
  162. #define PF_CTB AF_CTB /* Apple Comm Toolbox (not yet supported) */
  163. #define PF_FILE AF_FILE /* Normal File I/O (used internally) */
  164. #define PF_PPC AF_PPC /* PPC Toolbox */
  165. #define PF_PAP AF_PAP /* Printer Access Protocol (client only) */
  166. #define PF_APPLETALK AF_APPLETALK /* Apple Talk  */
  167. /*
  168.  * Level number for (get/set)sockopt() to apply to socket itself.
  169.  */
  170. #define SOL_SOCKET 0xffff /* options for socket level */
  171. #define INADDR_ANY  (unsigned long)0x00000000
  172. struct sockaddr 
  173. {
  174. u_char sa_len; /* total length */
  175. u_char sa_family; /* address family */
  176. char sa_data[14]; /* actually longer; address value */ /* Flawfinder: ignore */
  177. };
  178. /*
  179.  * Internet address (a structure for historical reasons)
  180.  */
  181. struct in_addr {
  182. unsigned long s_addr;
  183. };
  184. /*
  185.  * Socket address, internet style.
  186.  */
  187. struct sockaddr_in {
  188. unsigned char sin_len;
  189. unsigned char sin_family;
  190. unsigned short sin_port;
  191. struct in_addr sin_addr;
  192. char sin_zero[8]; /* Flawfinder: ignore */
  193. };
  194. extern char  *inet_ntoa(struct in_addr in);
  195. extern unsigned long inet_addr(const char* cp);
  196. extern struct  hostent *gethostbyname(char *name);
  197. extern INT16  gethostname(char *name, INT16 namelen);
  198. struct hostent  *gethostbyaddr(char *addr, int len, int type);
  199. #ifdef __cplusplus
  200. }
  201. #endif  /* __cplusplus */
  202. #endif  /* __MACSOCKETS__ */