Xtrans.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:10k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. Copyright 1993, 1994, 1998  The Open Group
  3. Permission to use, copy, modify, distribute, and sell this software and its
  4. documentation for any purpose is hereby granted without fee, provided that
  5. the above copyright notice appear in all copies and that both that
  6. copyright notice and this permission notice appear in supporting
  7. documentation.
  8. The above copyright notice and this permission notice shall be included
  9. in all copies or substantial portions of the Software.
  10. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  11. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  12. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  13. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
  14. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  15. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  16. OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall
  18. not be used in advertising or otherwise to promote the sale, use or
  19. other dealings in this Software without prior written authorization
  20. from The Open Group.
  21.  * Copyright 1993, 1994 NCR Corporation - Dayton, Ohio, USA
  22.  *
  23.  * All Rights Reserved
  24.  *
  25.  * Permission to use, copy, modify, and distribute this software and its
  26.  * documentation for any purpose and without fee is hereby granted, provided
  27.  * that the above copyright notice appear in all copies and that both that
  28.  * copyright notice and this permission notice appear in supporting
  29.  * documentation, and that the name NCR not be used in advertising
  30.  * or publicity pertaining to distribution of the software without specific,
  31.  * written prior permission.  NCR makes no representations about the
  32.  * suitability of this software for any purpose.  It is provided "as is"
  33.  * without express or implied warranty.
  34.  *
  35.  * NCR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  36.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
  37.  * NO EVENT SHALL NCR BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  38.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
  39.  * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
  40.  * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  41.  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  42.  */
  43. #ifndef _XTRANS_H_
  44. #define _XTRANS_H_
  45. #include <X11/Xfuncproto.h>
  46. #include <X11/Xos.h>
  47. #ifndef WIN32
  48. #include <sys/socket.h>
  49. #endif
  50. /*
  51.  * Set the functions names according to where this code is being compiled.
  52.  */
  53. #ifdef X11_t
  54. #if !defined(UNIXCPP) || defined(ANSICPP)
  55. #define TRANS(func) _X11Trans##func
  56. #else
  57. #define TRANS(func) _X11Trans/**/func
  58. #endif
  59. #ifdef XTRANSDEBUG
  60. static char* __xtransname = "_X11Trans";
  61. #endif
  62. #endif /* X11_t */
  63. #ifdef XSERV_t
  64. #if !defined(UNIXCPP) || defined(ANSICPP)
  65. #define TRANS(func) _XSERVTrans##func
  66. #else
  67. #define TRANS(func) _XSERVTrans/**/func
  68. #endif
  69. #ifdef XTRANSDEBUG
  70. static char* __xtransname = "_XSERVTrans";
  71. #endif
  72. #define X11_t
  73. #endif /* XSERV_t */
  74. #ifdef XIM_t
  75. #if !defined(UNIXCPP) || defined(ANSICPP)
  76. #define TRANS(func) _XimXTrans##func
  77. #else
  78. #define TRANS(func) _XimXTrans/**/func
  79. #endif
  80. #ifdef XTRANSDEBUG
  81. static char* __xtransname = "_XimTrans";
  82. #endif
  83. #endif /* XIM_t */
  84. #ifdef FS_t
  85. #if !defined(UNIXCPP) || defined(ANSICPP)
  86. #define TRANS(func) _FSTrans##func
  87. #else
  88. #define TRANS(func) _FSTrans/**/func
  89. #endif
  90. #ifdef XTRANSDEBUG
  91. static char* __xtransname = "_FSTrans";
  92. #endif
  93. #endif /* FS_t */
  94. #ifdef FONT_t
  95. #if !defined(UNIXCPP) || defined(ANSICPP)
  96. #define TRANS(func) _FontTrans##func
  97. #else
  98. #define TRANS(func) _FontTrans/**/func
  99. #endif
  100. #ifdef XTRANSDEBUG
  101. static char* __xtransname = "_FontTrans";
  102. #endif
  103. #endif /* FONT_t */
  104. #ifdef ICE_t
  105. #if !defined(UNIXCPP) || defined(ANSICPP)
  106. #define TRANS(func) _IceTrans##func
  107. #else
  108. #define TRANS(func) _IceTrans/**/func
  109. #endif
  110. #ifdef XTRANSDEBUG
  111. static char* __xtransname = "_IceTrans";
  112. #endif
  113. #endif /* ICE_t */
  114. #ifdef TEST_t
  115. #if !defined(UNIXCPP) || defined(ANSICPP)
  116. #define TRANS(func) _TESTTrans##func
  117. #else
  118. #define TRANS(func) _TESTTrans/**/func
  119. #endif
  120. #ifdef XTRANSDEBUG
  121. static char* __xtransname = "_TESTTrans";
  122. #endif
  123. #endif /* TEST_t */
  124. #ifdef LBXPROXY_t
  125. #if !defined(UNIXCPP) || defined(ANSICPP)
  126. #define TRANS(func) _LBXPROXYTrans##func
  127. #else
  128. #define TRANS(func) _LBXPROXYTrans/**/func
  129. #endif
  130. #define X11_t /* The server defines this - so should the LBX proxy */
  131. #ifdef XTRANSDEBUG
  132. static char* __xtransname = "_LBXPROXYTrans";
  133. #endif
  134. #endif /* LBXPROXY_t */
  135. #if !defined(TRANS)
  136. #if !defined(UNIXCPP) || defined(ANSICPP)
  137. #define TRANS(func) _XTrans##func
  138. #else
  139. #define TRANS(func) _XTrans/**/func
  140. #endif
  141. #ifdef XTRANSDEBUG
  142. static char* __xtransname = "_XTrans";
  143. #endif
  144. #endif /* !TRANS */
  145. /*
  146.  * Create a single address structure that can be used wherever
  147.  * an address structure is needed. struct sockaddr is not big enough
  148.  * to hold a sockadd_un, so we create this definition to have a single
  149.  * structure that is big enough for all the structures we might need.
  150.  *
  151.  * This structure needs to be independent of the socket/TLI interface used.
  152.  */
  153. #if defined(IPv6) && defined(AF_INET6)
  154. typedef struct sockaddr_storage Xtransaddr;
  155. #else
  156. #define XTRANS_MAX_ADDR_LEN 128 /* large enough to hold sun_path */
  157. typedef struct {
  158.     unsigned char addr[XTRANS_MAX_ADDR_LEN];
  159. } Xtransaddr;
  160. #endif
  161. #ifdef LONG64
  162. typedef int BytesReadable_t;
  163. #else
  164. typedef long BytesReadable_t;
  165. #endif
  166. #if defined(WIN32) || defined(USG) 
  167. /*
  168.  *      TRANS(Readv) and TRANS(Writev) use struct iovec, normally found
  169.  *      in Berkeley systems in <sys/uio.h>.  See the readv(2) and writev(2)
  170.  *      manual pages for details.
  171.  */
  172. struct iovec {
  173.     caddr_t iov_base;
  174.     int iov_len;
  175. };
  176. #else
  177. #include <sys/uio.h>
  178. #endif
  179. typedef struct _XtransConnInfo *XtransConnInfo;
  180. /*
  181.  * Transport Option definitions
  182.  */
  183. #define TRANS_NONBLOCKING 1
  184. #define TRANS_CLOSEONEXEC 2
  185. /*
  186.  * Return values of Connect (0 is success)
  187.  */
  188. #define TRANS_CONNECT_FAILED  -1
  189. #define TRANS_TRY_CONNECT_AGAIN -2
  190. #define TRANS_IN_PROGRESS -3
  191. /*
  192.  * Return values of CreateListener (0 is success)
  193.  */
  194. #define TRANS_CREATE_LISTENER_FAILED  -1
  195. #define TRANS_ADDR_IN_USE -2
  196. /*
  197.  * Return values of Accept (0 is success)
  198.  */
  199. #define TRANS_ACCEPT_BAD_MALLOC -1
  200. #define TRANS_ACCEPT_FAILED  -2
  201. #define TRANS_ACCEPT_MISC_ERROR -3
  202. /*
  203.  * ResetListener return values
  204.  */
  205. #define TRANS_RESET_NOOP 1
  206. #define TRANS_RESET_NEW_FD 2
  207. #define TRANS_RESET_FAILURE 3
  208. /*
  209.  * Function prototypes for the exposed interface
  210.  */
  211. void TRANS(FreeConnInfo) (
  212.     XtransConnInfo  /* ciptr */
  213. );
  214. #ifdef TRANS_CLIENT
  215. XtransConnInfo TRANS(OpenCOTSClient)(
  216.     char * /* address */
  217. );
  218. #endif /* TRANS_CLIENT */
  219. #ifdef TRANS_SERVER
  220. XtransConnInfo TRANS(OpenCOTSServer)(
  221.     char * /* address */
  222. );
  223. #endif /* TRANS_SERVER */
  224. #ifdef TRANS_CLIENT
  225. XtransConnInfo TRANS(OpenCLTSClient)(
  226.     char * /* address */
  227. );
  228. #endif /* TRANS_CLIENT */
  229. #ifdef TRANS_SERVER
  230. XtransConnInfo TRANS(OpenCLTSServer)(
  231.     char * /* address */
  232. );
  233. #endif /* TRANS_SERVER */
  234. #ifdef TRANS_REOPEN
  235. XtransConnInfo TRANS(ReopenCOTSServer)(
  236.     int, /* trans_id */
  237.     int, /* fd */
  238.     char * /* port */
  239. );
  240. XtransConnInfo TRANS(ReopenCLTSServer)(
  241.     int, /* trans_id */
  242.     int, /* fd */
  243.     char * /* port */
  244. );
  245. int TRANS(GetReopenInfo)(
  246.     XtransConnInfo, /* ciptr */
  247.     int *, /* trans_id */
  248.     int *, /* fd */
  249.     char ** /* port */
  250. );
  251. #endif /* TRANS_REOPEN */
  252. int TRANS(SetOption)(
  253.     XtransConnInfo, /* ciptr */
  254.     int, /* option */
  255.     int /* arg */
  256. );
  257. #ifdef TRANS_SERVER
  258. int TRANS(CreateListener)(
  259.     XtransConnInfo, /* ciptr */
  260.     char *, /* port */
  261.     unsigned int /* flags */
  262. );
  263. int TRANS(NoListen) (
  264.     char*               /* protocol*/
  265. );
  266. int TRANS(ResetListener)(
  267.     XtransConnInfo /* ciptr */
  268. );
  269. XtransConnInfo TRANS(Accept)(
  270.     XtransConnInfo, /* ciptr */
  271.     int * /* status */
  272. );
  273. #endif /* TRANS_SERVER */
  274. #ifdef TRANS_CLIENT
  275. int TRANS(Connect)(
  276.     XtransConnInfo, /* ciptr */
  277.     char * /* address */
  278. );
  279. #endif /* TRANS_CLIENT */
  280. int TRANS(BytesReadable)(
  281.     XtransConnInfo, /* ciptr */
  282.     BytesReadable_t * /* pend */
  283. );
  284. int TRANS(Read)(
  285.     XtransConnInfo, /* ciptr */
  286.     char *, /* buf */
  287.     int /* size */
  288. );
  289. int TRANS(Write)(
  290.     XtransConnInfo, /* ciptr */
  291.     char *, /* buf */
  292.     int /* size */
  293. );
  294. int TRANS(Readv)(
  295.     XtransConnInfo, /* ciptr */
  296.     struct iovec *, /* buf */
  297.     int /* size */
  298. );
  299. int TRANS(Writev)(
  300.     XtransConnInfo, /* ciptr */
  301.     struct iovec *, /* buf */
  302.     int /* size */
  303. );
  304. int TRANS(Disconnect)(
  305.     XtransConnInfo /* ciptr */
  306. );
  307. int TRANS(Close)(
  308.     XtransConnInfo /* ciptr */
  309. );
  310. int TRANS(CloseForCloning)(
  311.     XtransConnInfo /* ciptr */
  312. );
  313. int TRANS(IsLocal)(
  314.     XtransConnInfo /* ciptr */
  315. );
  316. int TRANS(GetMyAddr)(
  317.     XtransConnInfo, /* ciptr */
  318.     int *, /* familyp */
  319.     int *, /* addrlenp */
  320.     Xtransaddr ** /* addrp */
  321. );
  322. int TRANS(GetPeerAddr)(
  323.     XtransConnInfo, /* ciptr */
  324.     int *, /* familyp */
  325.     int *, /* addrlenp */
  326.     Xtransaddr ** /* addrp */
  327. );
  328. int TRANS(GetConnectionNumber)(
  329.     XtransConnInfo /* ciptr */
  330. );
  331. #ifdef TRANS_SERVER
  332. int TRANS(MakeAllCOTSServerListeners)(
  333.     char *, /* port */
  334.     int *, /* partial */
  335.     int *, /* count_ret */
  336.     XtransConnInfo ** /* ciptrs_ret */
  337. );
  338. int TRANS(MakeAllCLTSServerListeners)(
  339.     char *, /* port */
  340.     int *, /* partial */
  341.     int *, /* count_ret */
  342.     XtransConnInfo ** /* ciptrs_ret */
  343. );
  344. #endif /* TRANS_SERVER */
  345. /*
  346.  * Function Prototypes for Utility Functions.
  347.  */
  348. #ifdef X11_t
  349. int TRANS(ConvertAddress)(
  350.     int *, /* familyp */
  351.     int *, /* addrlenp */
  352.     Xtransaddr ** /* addrp */
  353. );
  354. #endif /* X11_t */
  355. #ifdef ICE_t
  356. char *
  357. TRANS(GetMyNetworkId)(
  358.     XtransConnInfo /* ciptr */
  359. );
  360. char *
  361. TRANS(GetPeerNetworkId)(
  362.     XtransConnInfo /* ciptr */
  363. );
  364. #endif /* ICE_t */
  365. int 
  366. TRANS(GetHostname) (
  367.     char * /* buf */,
  368.     int  /* maxlen */
  369. );
  370. #if defined(WIN32) && defined(TCPCONN) 
  371. int TRANS(WSAStartup)();
  372. #endif
  373. #endif /* _XTRANS_H_ */