Xtransint.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 _XTRANSINT_H_
  44. #define _XTRANSINT_H_
  45. /*
  46.  * XTRANSDEBUG will enable the PRMSG() macros used in the X Transport 
  47.  * Interface code. Each use of the PRMSG macro has a level associated with 
  48.  * it. XTRANSDEBUG is defined to be a level. If the invocation level is =< 
  49.  * the value of XTRANSDEBUG, then the message will be printed out to stderr. 
  50.  * Recommended levels are:
  51.  *
  52.  * XTRANSDEBUG=1 Error messages
  53.  * XTRANSDEBUG=2 API Function Tracing
  54.  * XTRANSDEBUG=3 All Function Tracing
  55.  * XTRANSDEBUG=4 printing of intermediate values
  56.  * XTRANSDEBUG=5 really detailed stuff
  57. #define XTRANSDEBUG 2
  58.  *
  59.  * Defining XTRANSDEBUGTIMESTAMP will cause printing timestamps with each
  60.  * message.
  61.  */
  62. #ifndef XTRANSDEBUG
  63. #  define XTRANSDEBUG 1
  64. #endif
  65. #ifdef WIN32
  66. # define _WILLWINSOCK_
  67. #endif
  68. #include "Xtrans.h"
  69. #ifdef XTRANSDEBUG
  70. # include <stdio.h>
  71. #endif /* XTRANSDEBUG */
  72. #include <errno.h>
  73. #ifndef WIN32
  74. #  include <sys/socket.h>
  75. # include <netinet/in.h>
  76. # include <arpa/inet.h>
  77. /*
  78.  * Moved the setting of NEED_UTSNAME to this header file from Xtrans.c,
  79.  * to avoid a race condition. JKJ (6/5/97)
  80.  */
  81. # if defined(_POSIX_SOURCE) || defined(USG) || defined(SVR4) || defined(__SCO__)
  82. #  ifndef NEED_UTSNAME
  83. #   define NEED_UTSNAME
  84. #  endif
  85. #  include <sys/utsname.h>
  86. # endif
  87. #  define ESET(val) errno = val
  88. # define EGET() errno
  89. #else /* WIN32 */
  90. # include <limits.h> /* for USHRT_MAX */
  91. # define ESET(val) WSASetLastError(val)
  92. # define EGET() WSAGetLastError()
  93. #endif /* WIN32 */
  94. #include <stddef.h>
  95. #ifdef X11_t
  96. #define X_TCP_PORT 6000
  97. #endif
  98. struct _XtransConnInfo {
  99.     struct _Xtransport     *transptr;
  100.     int index;
  101.     char *priv;
  102.     int flags;
  103.     int fd;
  104.     char *port;
  105.     int family;
  106.     char *addr;
  107.     int addrlen;
  108.     char *peeraddr;
  109.     int peeraddrlen;
  110. };
  111. #define XTRANS_OPEN_COTS_CLIENT       1
  112. #define XTRANS_OPEN_COTS_SERVER       2
  113. #define XTRANS_OPEN_CLTS_CLIENT       3
  114. #define XTRANS_OPEN_CLTS_SERVER       4
  115. typedef struct _Xtransport {
  116.     char *TransName;
  117.     int flags;
  118. #ifdef TRANS_CLIENT
  119.     XtransConnInfo (*OpenCOTSClient)(
  120. struct _Xtransport *, /* transport */
  121. char *, /* protocol */
  122. char *, /* host */
  123. char * /* port */
  124.     );
  125. #endif /* TRANS_CLIENT */
  126. #ifdef TRANS_SERVER
  127.     char ** nolisten;
  128.     XtransConnInfo (*OpenCOTSServer)(
  129. struct _Xtransport *, /* transport */
  130. char *, /* protocol */
  131. char *, /* host */
  132. char * /* port */
  133.     );
  134. #endif /* TRANS_SERVER */
  135. #ifdef TRANS_CLIENT
  136.     XtransConnInfo (*OpenCLTSClient)(
  137. struct _Xtransport *, /* transport */
  138. char *, /* protocol */
  139. char *, /* host */
  140. char * /* port */
  141.     );
  142. #endif /* TRANS_CLIENT */
  143. #ifdef TRANS_SERVER
  144.     XtransConnInfo (*OpenCLTSServer)(
  145. struct _Xtransport *, /* transport */
  146. char *, /* protocol */
  147. char *, /* host */
  148. char * /* port */
  149.     );
  150. #endif /* TRANS_SERVER */
  151. #ifdef TRANS_REOPEN
  152.     XtransConnInfo (*ReopenCOTSServer)(
  153. struct _Xtransport *, /* transport */
  154.         int, /* fd */
  155.         char * /* port */
  156.     );
  157.     XtransConnInfo (*ReopenCLTSServer)(
  158. struct _Xtransport *, /* transport */
  159.         int, /* fd */
  160.         char * /* port */
  161.     );
  162. #endif /* TRANS_REOPEN */
  163.     int (*SetOption)(
  164. XtransConnInfo, /* connection */
  165. int, /* option */
  166. int /* arg */
  167.     );
  168. #ifdef TRANS_SERVER
  169. /* Flags */
  170. # define ADDR_IN_USE_ALLOWED 1
  171.     int (*CreateListener)(
  172. XtransConnInfo, /* connection */
  173. char *, /* port */
  174. unsigned int /* flags */
  175.     );
  176.     int (*ResetListener)(
  177. XtransConnInfo /* connection */
  178.     );
  179.     XtransConnInfo (*Accept)(
  180. XtransConnInfo, /* connection */
  181.         int * /* status */
  182.     );
  183. #endif /* TRANS_SERVER */
  184. #ifdef TRANS_CLIENT
  185.     int (*Connect)(
  186. XtransConnInfo, /* connection */
  187. char *, /* host */
  188. char * /* port */
  189.     );
  190. #endif /* TRANS_CLIENT */
  191.     int (*BytesReadable)(
  192. XtransConnInfo, /* connection */
  193. BytesReadable_t * /* pend */
  194.     );
  195.     int (*Read)(
  196. XtransConnInfo, /* connection */
  197. char *, /* buf */
  198. int /* size */
  199.     );
  200.     int (*Write)(
  201. XtransConnInfo, /* connection */
  202. char *, /* buf */
  203. int /* size */
  204.     );
  205.     int (*Readv)(
  206. XtransConnInfo, /* connection */
  207. struct iovec *, /* buf */
  208. int /* size */
  209.     );
  210.     int (*Writev)(
  211. XtransConnInfo, /* connection */
  212. struct iovec *, /* buf */
  213. int /* size */
  214.     );
  215.     int (*Disconnect)(
  216. XtransConnInfo /* connection */
  217.     );
  218.     int (*Close)(
  219. XtransConnInfo /* connection */
  220.     );
  221.     int (*CloseForCloning)(
  222. XtransConnInfo /* connection */
  223.     );
  224. } Xtransport;
  225. typedef struct _Xtransport_table {
  226.     Xtransport *transport;
  227.     int transport_id;
  228. } Xtransport_table;
  229. /*
  230.  * Flags for the flags member of Xtransport.
  231.  */
  232. #define TRANS_ALIAS (1<<0) /* record is an alias, don't create server */
  233. #define TRANS_LOCAL (1<<1) /* local transport */
  234. #define TRANS_DISABLED (1<<2) /* Don't open this one */
  235. #define TRANS_NOLISTEN  (1<<3)  /* Don't listen on this one */
  236. #define TRANS_NOUNLINK (1<<4) /* Dont unlink transport endpoints */
  237. #define TRANS_ABSTRACT (1<<5) /* Use abstract sockets if available */
  238. #define TRANS_NOXAUTH (1<<6) /* Don't verify authentication (because it's secure some other way at the OS layer) */
  239. /* Flags to preserve when setting others */
  240. #define TRANS_KEEPFLAGS (TRANS_NOUNLINK|TRANS_ABSTRACT)
  241. /*
  242.  * readv() and writev() don't exist or don't work correctly on some
  243.  * systems, so they may be emulated.
  244.  */
  245. #if defined(SYSV) && defined(__i386__) && !defined(__SCO__) && !defined(sun) || defined(WIN32) 
  246. #define READV(ciptr, iov, iovcnt) TRANS(ReadV)(ciptr, iov, iovcnt)
  247. static int TRANS(ReadV)(
  248.     XtransConnInfo, /* ciptr */
  249.     struct iovec *, /* iov */
  250.     int /* iovcnt */
  251. );
  252. #else
  253. #define READV(ciptr, iov, iovcnt) readv(ciptr->fd, iov, iovcnt)
  254. #endif /* CRAY || (SYSV && __i386__) || WIN32 || __sxg__ || */
  255. #if defined(SYSV) && defined(__i386__) && !defined(__SCO__) && !defined(sun) || defined(WIN32) 
  256. #define WRITEV(ciptr, iov, iovcnt) TRANS(WriteV)(ciptr, iov, iovcnt)
  257. static int TRANS(WriteV)(
  258.     XtransConnInfo, /* ciptr */
  259.     struct iovec *, /* iov */
  260.     int  /* iovcnt */
  261. );
  262. #else
  263. #define WRITEV(ciptr, iov, iovcnt) writev(ciptr->fd, iov, iovcnt)
  264. #endif /* CRAY || WIN32 || __sxg__ */
  265. static int is_numeric (
  266.     char * /* str */
  267. );
  268. #ifdef TRANS_SERVER
  269. static int trans_mkdir (
  270.     char *, /* path */
  271.     int /* mode */
  272. );
  273. #endif
  274. /*
  275.  * Some XTRANSDEBUG stuff
  276.  */
  277. #if defined(XTRANSDEBUG)
  278. /* add hack to the format string to avoid warnings about extra arguments
  279.  * to fprintf.
  280.  */
  281. #ifdef XTRANSDEBUGTIMESTAMP
  282. #if defined(XSERV_t) && defined(TRANS_SERVER)
  283. /* Use ErrorF() for the X server */
  284. #define PRMSG(lvl,x,a,b,c) if (lvl <= XTRANSDEBUG){ 
  285. int hack= 0, saveerrno=errno; 
  286.                         struct timeval tp;
  287.                         gettimeofday(&tp,0); 
  288. ErrorF(__xtransname); 
  289. ErrorF(x+hack,a,b,c); 
  290.                         ErrorF("timestamp (ms): %dn",tp.tv_sec*1000+tp.tv_usec/1000); 
  291. errno=saveerrno; 
  292. } else ((void)0)
  293. #else
  294. #define PRMSG(lvl,x,a,b,c) if (lvl <= XTRANSDEBUG){ 
  295. int hack= 0, saveerrno=errno; 
  296.                         struct timeval tp;
  297.                         gettimeofday(&tp,0); 
  298. fprintf(stderr, __xtransname); fflush(stderr); 
  299. fprintf(stderr, x+hack,a,b,c); fflush(stderr); 
  300.                         fprintf(stderr, "timestamp (ms): %dn",tp.tv_sec*1000+tp.tv_usec/1000); 
  301.                         fflush(stderr); 
  302. errno=saveerrno; 
  303. } else ((void)0)
  304. #endif /* XSERV_t && TRANS_SERVER */
  305. #else /* XTRANSDEBUGTIMESTAMP */
  306. #if defined(XSERV_t) && defined(TRANS_SERVER)
  307. /* Use ErrorF() for the X server */
  308. #define PRMSG(lvl,x,a,b,c) if (lvl <= XTRANSDEBUG){ 
  309. int hack= 0, saveerrno=errno; 
  310. ErrorF(__xtransname); 
  311. ErrorF(x+hack,a,b,c); 
  312. errno=saveerrno; 
  313. } else ((void)0)
  314. #else
  315. #define PRMSG(lvl,x,a,b,c) if (lvl <= XTRANSDEBUG){ 
  316. int hack= 0, saveerrno=errno; 
  317. fprintf(stderr, __xtransname); fflush(stderr); 
  318. fprintf(stderr, x+hack,a,b,c); fflush(stderr); 
  319. errno=saveerrno; 
  320. } else ((void)0)
  321. #endif /* XSERV_t && TRANS_SERVER */
  322. #endif /* XTRANSDEBUGTIMESTAMP */
  323. #else
  324. #define PRMSG(lvl,x,a,b,c) ((void)0)
  325. #endif /* XTRANSDEBUG */
  326. #endif /* _XTRANSINT_H_ */