vlc_network.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:10k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_network.h: interface to communicate with network plug-ins
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2005 the VideoLAN team
  5.  * Copyright © 2006-2007 Rémi Denis-Courmont
  6.  * $Id: c3cc983469e3d785983fc0d4512ff725c5678a0e $
  7.  *
  8.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  9.  *          Laurent Aimar <fenrir@via.ecp.fr>
  10.  *          Rémi Denis-Courmont <rem # videolan.org>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  25.  *****************************************************************************/
  26. #ifndef VLC_NETWORK_H
  27. # define VLC_NETWORK_H
  28. /**
  29.  * file
  30.  * This file defines interface to communicate with network plug-ins
  31.  */
  32. #if defined( WIN32 )
  33. #   if !defined(UNDER_CE)
  34. #       define _NO_OLDNAMES 1
  35. #       include <io.h>
  36. #   endif
  37. #   include <winsock2.h>
  38. #   include <ws2tcpip.h>
  39. #   define ENETUNREACH WSAENETUNREACH
  40. #   define net_errno (WSAGetLastError())
  41. extern const char *net_strerror( int val );
  42. struct iovec
  43. {
  44.     void  *iov_base;
  45.     size_t iov_len;
  46. };
  47. struct msghdr
  48. {
  49.     void         *msg_name;
  50.     size_t        msg_namelen;
  51.     struct iovec *msg_iov;
  52.     size_t        msg_iovlen;
  53.     void         *msg_control;
  54.     size_t        msg_controllen;
  55.     int           msg_flags;
  56. };
  57. #   ifndef IPV6_V6ONLY
  58. #       define IPV6_V6ONLY 27
  59. #   endif
  60. #else
  61. #   include <sys/socket.h>
  62. #   ifdef HAVE_NETINET_IN_H
  63. #      include <netinet/in.h>
  64. #   endif
  65. #   ifdef HAVE_ARPA_INET_H
  66. #      include <arpa/inet.h>
  67. #   elif defined( SYS_BEOS )
  68. #      include <net/netdb.h>
  69. #   endif
  70. #   include <netdb.h>
  71. #   define net_errno errno
  72. #endif
  73. # ifdef __cplusplus
  74. extern "C" {
  75. # endif
  76. /* Portable networking layer communication */
  77. int net_Socket (vlc_object_t *obj, int family, int socktype, int proto);
  78. int net_SetupSocket (int fd);
  79. #define net_Connect(a, b, c, d, e) __net_Connect(VLC_OBJECT(a), b, c, d, e)
  80. VLC_EXPORT( int, __net_Connect, (vlc_object_t *p_this, const char *psz_host, int i_port, int socktype, int protocol) );
  81. VLC_EXPORT( int *, net_Listen, (vlc_object_t *p_this, const char *psz_host, int i_port, int protocol) );
  82. #define net_ListenTCP(a, b, c) net_Listen(VLC_OBJECT(a), b, c, IPPROTO_TCP)
  83. #define net_ConnectTCP(a, b, c) __net_ConnectTCP(VLC_OBJECT(a), b, c)
  84. static inline int __net_ConnectTCP (vlc_object_t *obj, const char *host, int port)
  85. {
  86.     return __net_Connect (obj, host, port, SOCK_STREAM, IPPROTO_TCP);
  87. }
  88. VLC_EXPORT( int, net_AcceptSingle, (vlc_object_t *obj, int lfd) );
  89. VLC_EXPORT( int, __net_Accept, ( vlc_object_t *, int *, mtime_t ) );
  90. #define net_Accept(a, b, c) 
  91.       __net_Accept(VLC_OBJECT(a), b, (c == -1) ? -1 : (c ? check_delay(c) : 0))
  92. #define net_ConnectDgram(a, b, c, d, e ) __net_ConnectDgram(VLC_OBJECT(a), b, c, d, e)
  93. VLC_EXPORT( int, __net_ConnectDgram, ( vlc_object_t *p_this, const char *psz_host, int i_port, int hlim, int proto ) );
  94. static inline int net_ConnectUDP (vlc_object_t *obj, const char *host, int port, int hlim)
  95. {
  96.     return net_ConnectDgram (obj, host, port, hlim, IPPROTO_UDP);
  97. }
  98. #define net_OpenDgram( a, b, c, d, e, g, h ) __net_OpenDgram(VLC_OBJECT(a), b, c, d, e, g, h)
  99. VLC_EXPORT( int, __net_OpenDgram, ( vlc_object_t *p_this, const char *psz_bind, int i_bind, const char *psz_server, int i_server, int family, int proto ) );
  100. static inline int net_ListenUDP1 (vlc_object_t *obj, const char *host, int port)
  101. {
  102.     return net_OpenDgram (obj, host, port, NULL, 0, 0, IPPROTO_UDP);
  103. }
  104. VLC_EXPORT( void, net_ListenClose, ( int *fd ) );
  105. int net_Subscribe (vlc_object_t *obj, int fd, const struct sockaddr *addr,
  106.                    socklen_t addrlen);
  107. VLC_EXPORT( int, net_SetCSCov, ( int fd, int sendcov, int recvcov ) );
  108. /* Functions to read from or write to the networking layer */
  109. struct virtual_socket_t
  110. {
  111.     void *p_sys;
  112.     int (*pf_recv) ( void *, void *, int );
  113.     int (*pf_send) ( void *, const void *, int );
  114. };
  115. #define net_Read(a,b,c,d,e,f) __net_Read(VLC_OBJECT(a),b,c,d,e,f)
  116. VLC_EXPORT( ssize_t, __net_Read, ( vlc_object_t *p_this, int fd, const v_socket_t *, void *p_data, size_t i_data, bool b_retry ) );
  117. #define net_Write(a,b,c,d,e) __net_Write(VLC_OBJECT(a),b,c,d,e)
  118. VLC_EXPORT( ssize_t, __net_Write, ( vlc_object_t *p_this, int fd, const v_socket_t *, const void *p_data, size_t i_data ) );
  119. #define net_Gets(a,b,c) __net_Gets(VLC_OBJECT(a),b,c)
  120. VLC_EXPORT( char *, __net_Gets, ( vlc_object_t *p_this, int fd, const v_socket_t * ) );
  121. VLC_EXPORT( ssize_t, net_Printf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, ... ) LIBVLC_FORMAT( 4, 5 ) );
  122. #define net_vaPrintf(a,b,c,d,e) __net_vaPrintf(VLC_OBJECT(a),b,c,d,e)
  123. VLC_EXPORT( ssize_t, __net_vaPrintf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, va_list args ) );
  124. /* Don't go to an extra call layer if we have the symbol */
  125. #ifndef HAVE_INET_PTON
  126. #define inet_pton vlc_inet_pton
  127. #endif
  128. #ifndef HAVE_INET_NTOP
  129. #define inet_ntop vlc_inet_ntop
  130. #endif
  131. VLC_EXPORT (int, vlc_inet_pton, (int af, const char *src, void *dst) );
  132. VLC_EXPORT (const char *, vlc_inet_ntop, (int af, const void *src,
  133.                                           char *dst, socklen_t cnt) );
  134. #ifndef HAVE_POLL
  135. enum
  136. {
  137.     POLLIN=1,
  138.     POLLOUT=2,
  139.     POLLPRI=4,
  140.     POLLERR=8,  // unsupported stub
  141.     POLLHUP=16, // unsupported stub
  142.     POLLNVAL=32 // unsupported stub
  143. };
  144. struct pollfd
  145. {
  146.     int fd;
  147.     int events;
  148.     int revents;
  149. };
  150. # define poll(a, b, c) vlc_poll(a, b, c)
  151. #endif
  152. struct pollfd;
  153. VLC_EXPORT (int, vlc_poll, (struct pollfd *fds, unsigned nfds, int timeout));
  154. #ifdef WIN32
  155. /* Microsoft: same semantic, same value, different name... go figure */
  156. # define SHUT_RD SD_RECEIVE
  157. # define SHUT_WR SD_SEND
  158. # define SHUT_RDWR SD_BOTH
  159. # define net_Close( fd ) closesocket ((SOCKET)fd)
  160. #else
  161. #ifdef HAVE_UNISTD_H
  162. #include <unistd.h>
  163. #endif
  164. # define net_Close( fd ) (void)close (fd)
  165. #endif
  166. /* Portable network names/addresses resolution layer */
  167. /* GAI error codes */
  168. # ifndef EAI_BADFLAGS
  169. #  define EAI_BADFLAGS -1
  170. # endif
  171. # ifndef EAI_NONAME
  172. #  define EAI_NONAME -2
  173. # endif
  174. # ifndef EAI_AGAIN
  175. #  define EAI_AGAIN -3
  176. # endif
  177. # ifndef EAI_FAIL
  178. #  define EAI_FAIL -4
  179. # endif
  180. # ifndef EAI_NODATA
  181. #  define EAI_NODATA -5
  182. # endif
  183. # ifndef EAI_FAMILY
  184. #  define EAI_FAMILY -6
  185. # endif
  186. # ifndef EAI_SOCKTYPE
  187. #  define EAI_SOCKTYPE -7
  188. # endif
  189. # ifndef EAI_SERVICE
  190. #  define EAI_SERVICE -8
  191. # endif
  192. # ifndef EAI_ADDRFAMILY
  193. #  define EAI_ADDRFAMILY -9
  194. # endif
  195. # ifndef EAI_MEMORY
  196. #  define EAI_MEMORY -10
  197. # endif
  198. #ifndef EAI_OVERFLOW
  199. #  define EAI_OVERFLOW -11
  200. #endif
  201. # ifndef EAI_SYSTEM
  202. #  define EAI_SYSTEM -12
  203. # endif
  204. # ifndef NI_MAXHOST
  205. #  define NI_MAXHOST 1025
  206. #  define NI_MAXSERV 32
  207. # endif
  208. # define NI_MAXNUMERICHOST 64
  209. # ifndef NI_NUMERICHOST
  210. #  define NI_NUMERICHOST 0x01
  211. #  define NI_NUMERICSERV 0x02
  212. #  define NI_NOFQDN      0x04
  213. #  define NI_NAMEREQD    0x08
  214. #  define NI_DGRAM       0x10
  215. # endif
  216. # ifndef HAVE_STRUCT_ADDRINFO
  217. struct addrinfo
  218. {
  219.     int ai_flags;
  220.     int ai_family;
  221.     int ai_socktype;
  222.     int ai_protocol;
  223.     size_t ai_addrlen;
  224.     struct sockaddr *ai_addr;
  225.     char *ai_canonname;
  226.     struct addrinfo *ai_next;
  227. };
  228. #  define AI_PASSIVE     1
  229. #  define AI_CANONNAME   2
  230. #  define AI_NUMERICHOST 4
  231. # endif /* if !HAVE_STRUCT_ADDRINFO */
  232. #ifndef AI_NUMERICSERV
  233. # define AI_NUMERICSERV 0
  234. #endif
  235. VLC_EXPORT( const char *, vlc_gai_strerror, ( int ) );
  236. VLC_EXPORT( int, vlc_getnameinfo, ( const struct sockaddr *, int, char *, int, int *, int ) );
  237. VLC_EXPORT( int, vlc_getaddrinfo, ( vlc_object_t *, const char *, int, const struct addrinfo *, struct addrinfo ** ) );
  238. VLC_EXPORT( void, vlc_freeaddrinfo, ( struct addrinfo * ) );
  239. static inline bool
  240. net_SockAddrIsMulticast (const struct sockaddr *addr, socklen_t len)
  241. {
  242.     switch (addr->sa_family)
  243.     {
  244. #ifdef IN_MULTICAST
  245.         case AF_INET:
  246.         {
  247.             const struct sockaddr_in *v4 = (const struct sockaddr_in *)addr;
  248.             if ((size_t)len < sizeof (*v4))
  249.                 return false;
  250.             return IN_MULTICAST (ntohl (v4->sin_addr.s_addr)) != 0;
  251.         }
  252. #endif
  253. #ifdef IN6_IS_ADDR_MULTICAST
  254.         case AF_INET6:
  255.         {
  256.             const struct sockaddr_in6 *v6 = (const struct sockaddr_in6 *)addr;
  257.             if ((size_t)len < sizeof (*v6))
  258.                 return false;
  259.             return IN6_IS_ADDR_MULTICAST (&v6->sin6_addr) != 0;
  260.         }
  261. #endif
  262.     }
  263.     return false;
  264. }
  265. static inline int net_GetSockAddress( int fd, char *address, int *port )
  266. {
  267.     struct sockaddr_storage addr;
  268.     socklen_t addrlen = sizeof( addr );
  269.     return getsockname( fd, (struct sockaddr *)&addr, &addrlen )
  270.         || vlc_getnameinfo( (struct sockaddr *)&addr, addrlen, address,
  271.                             NI_MAXNUMERICHOST, port, NI_NUMERICHOST )
  272.         ? VLC_EGENERIC : 0;
  273. }
  274. static inline int net_GetPeerAddress( int fd, char *address, int *port )
  275. {
  276.     struct sockaddr_storage addr;
  277.     socklen_t addrlen = sizeof( addr );
  278.     return getpeername( fd, (struct sockaddr *)&addr, &addrlen )
  279.         || vlc_getnameinfo( (struct sockaddr *)&addr, addrlen, address,
  280.                             NI_MAXNUMERICHOST, port, NI_NUMERICHOST )
  281.         ? VLC_EGENERIC : 0;
  282. }
  283. static inline uint16_t net_GetPort (const struct sockaddr *addr)
  284. {
  285.     switch (addr->sa_family)
  286.     {
  287. #ifdef AF_INET6
  288.         case AF_INET6:
  289.             return ((const struct sockaddr_in6 *)addr)->sin6_port;
  290. #endif
  291.         case AF_INET:
  292.             return ((const struct sockaddr_in *)addr)->sin_port;
  293.     }
  294.     return 0;
  295. }
  296. static inline void net_SetPort (struct sockaddr *addr, uint16_t port)
  297. {
  298.     switch (addr->sa_family)
  299.     {
  300. #ifdef AF_INET6
  301.         case AF_INET6:
  302.             ((struct sockaddr_in6 *)addr)->sin6_port = port;
  303.         break;
  304. #endif
  305.         case AF_INET:
  306.             ((struct sockaddr_in *)addr)->sin_port = port;
  307.         break;
  308.     }
  309. }
  310. # ifdef __cplusplus
  311. }
  312. # endif
  313. #endif