direct3d11: use the D3D11 types as D3D9 is not available on some platforms
[vlc.git] / include / vlc_network.h
blobc66e2d18b510f6da7ae95fcf388a6d9075d6d648
1 /*****************************************************************************
2 * vlc_network.h: interface to communicate with network plug-ins
3 *****************************************************************************
4 * Copyright (C) 2002-2005 VLC authors and VideoLAN
5 * Copyright © 2006-2007 Rémi Denis-Courmont
6 * $Id$
8 * Authors: Christophe Massiot <massiot@via.ecp.fr>
9 * Laurent Aimar <fenrir@via.ecp.fr>
10 * Rémi Denis-Courmont <rem # videolan.org>
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU Lesser General Public License as published by
14 * the Free Software Foundation; either version 2.1 of the License, or
15 * (at your option) any later version.
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 Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public License
23 * along with this program; if not, write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25 *****************************************************************************/
27 #ifndef VLC_NETWORK_H
28 # define VLC_NETWORK_H
30 /**
31 * \file
32 * This file defines interface to communicate with network plug-ins
35 #if defined( _WIN32 )
36 # define _NO_OLDNAMES 1
37 # include <io.h>
38 # include <winsock2.h>
39 # include <ws2tcpip.h>
40 # define net_errno (WSAGetLastError())
42 struct iovec
44 void *iov_base;
45 size_t iov_len;
48 struct msghdr
50 void *msg_name;
51 size_t msg_namelen;
52 struct iovec *msg_iov;
53 size_t msg_iovlen;
54 void *msg_control;
55 size_t msg_controllen;
56 int msg_flags;
59 # ifndef IPV6_V6ONLY
60 # define IPV6_V6ONLY 27
61 # endif
62 #else
63 # include <sys/types.h>
64 # include <unistd.h>
65 # include <sys/socket.h>
66 # include <netinet/in.h>
67 # include <netdb.h>
68 # define net_errno errno
69 #endif
71 #if defined( __SYMBIAN32__ )
72 # undef AF_INET6
73 # undef IN6_IS_ADDR_MULTICAST
74 # undef IPV6_V6ONLY
75 # undef IPV6_MULTICAST_HOPS
76 # undef IPV6_MULTICAST_IF
77 # undef IPV6_TCLASS
78 # undef IPV6_JOIN_GROUP
79 #endif
81 #ifndef MSG_NOSIGNAL
82 # define MSG_NOSIGNAL 0
83 #endif
85 VLC_API int vlc_socket (int, int, int, bool nonblock) VLC_USED;
87 struct sockaddr;
88 VLC_API int vlc_accept( int, struct sockaddr *, socklen_t *, bool ) VLC_USED;
90 # ifdef __cplusplus
91 extern "C" {
92 # endif
94 /* Portable networking layer communication */
95 int net_Socket (vlc_object_t *obj, int family, int socktype, int proto);
97 VLC_API int net_Connect(vlc_object_t *p_this, const char *psz_host, int i_port, int socktype, int protocol);
98 #define net_Connect(a, b, c, d, e) net_Connect(VLC_OBJECT(a), b, c, d, e)
100 VLC_API int * net_Listen(vlc_object_t *p_this, const char *psz_host, int i_port, int socktype, int protocol);
102 #define net_ListenTCP(a, b, c) net_Listen(VLC_OBJECT(a), b, c, \
103 SOCK_STREAM, IPPROTO_TCP)
105 static inline int net_ConnectTCP (vlc_object_t *obj, const char *host, int port)
107 return net_Connect (obj, host, port, SOCK_STREAM, IPPROTO_TCP);
109 #define net_ConnectTCP(a, b, c) net_ConnectTCP(VLC_OBJECT(a), b, c)
111 VLC_API int net_AcceptSingle(vlc_object_t *obj, int lfd);
113 VLC_API int net_Accept( vlc_object_t *, int * );
114 #define net_Accept(a, b) \
115 net_Accept(VLC_OBJECT(a), b)
117 VLC_API int net_ConnectDgram( vlc_object_t *p_this, const char *psz_host, int i_port, int hlim, int proto );
118 #define net_ConnectDgram(a, b, c, d, e ) \
119 net_ConnectDgram(VLC_OBJECT(a), b, c, d, e)
121 static inline int net_ConnectUDP (vlc_object_t *obj, const char *host, int port, int hlim)
123 return net_ConnectDgram (obj, host, port, hlim, IPPROTO_UDP);
126 VLC_API int net_OpenDgram( vlc_object_t *p_this, const char *psz_bind, int i_bind, const char *psz_server, int i_server, int proto );
127 #define net_OpenDgram( a, b, c, d, e, g ) \
128 net_OpenDgram(VLC_OBJECT(a), b, c, d, e, g)
130 static inline int net_ListenUDP1 (vlc_object_t *obj, const char *host, int port)
132 return net_OpenDgram (obj, host, port, NULL, 0, IPPROTO_UDP);
135 VLC_API void net_ListenClose( int *fd );
137 int net_Subscribe (vlc_object_t *obj, int fd, const struct sockaddr *addr,
138 socklen_t addrlen);
140 VLC_API int net_SetCSCov( int fd, int sendcov, int recvcov );
142 /* Functions to read from or write to the networking layer */
143 struct virtual_socket_t
145 void *p_sys;
146 int (*pf_recv) ( void *, void *, size_t );
147 int (*pf_send) ( void *, const void *, size_t );
150 VLC_API ssize_t net_Read( vlc_object_t *p_this, int fd, void *p_data, size_t i_data, bool b_retry );
151 #define net_Read(a,b,c,d,e) net_Read(VLC_OBJECT(a),b,c,d,e)
152 VLC_API ssize_t net_Write( vlc_object_t *p_this, int fd, const void *p_data, size_t i_data );
153 #define net_Write(a,b,c,d) net_Write(VLC_OBJECT(a),b,c,d)
154 VLC_API char * net_Gets( vlc_object_t *p_this, int fd );
155 #define net_Gets(a,b) net_Gets(VLC_OBJECT(a),b)
158 VLC_API ssize_t net_Printf( vlc_object_t *p_this, int fd, const char *psz_fmt, ... ) VLC_FORMAT( 3, 4 );
159 #define net_Printf(o,fd,...) net_Printf(VLC_OBJECT(o),fd, __VA_ARGS__)
160 VLC_API ssize_t net_vaPrintf( vlc_object_t *p_this, int fd, const char *psz_fmt, va_list args );
161 #define net_vaPrintf(a,b,c,d) net_vaPrintf(VLC_OBJECT(a),b,c,d)
163 #ifdef _WIN32
164 /* Microsoft: same semantic, same value, different name... go figure */
165 # define SHUT_RD SD_RECEIVE
166 # define SHUT_WR SD_SEND
167 # define SHUT_RDWR SD_BOTH
168 # define net_Close( fd ) closesocket ((SOCKET)fd)
169 #else
170 # ifdef __OS2__
171 # define SHUT_RD 0
172 # define SHUT_WR 1
173 # define SHUT_RDWR 2
174 # endif
175 # define net_Close( fd ) (void)close (fd)
176 #endif
178 /* Portable network names/addresses resolution layer */
180 /* GAI error codes */
181 # ifndef EAI_BADFLAGS
182 # define EAI_BADFLAGS -1
183 # endif
184 # ifndef EAI_NONAME
185 # define EAI_NONAME -2
186 # endif
187 # ifndef EAI_AGAIN
188 # define EAI_AGAIN -3
189 # endif
190 # ifndef EAI_FAIL
191 # define EAI_FAIL -4
192 # endif
193 # ifndef EAI_NODATA
194 # define EAI_NODATA -5
195 # endif
196 # ifndef EAI_FAMILY
197 # define EAI_FAMILY -6
198 # endif
199 # ifndef EAI_SOCKTYPE
200 # define EAI_SOCKTYPE -7
201 # endif
202 # ifndef EAI_SERVICE
203 # define EAI_SERVICE -8
204 # endif
205 # ifndef EAI_ADDRFAMILY
206 # define EAI_ADDRFAMILY -9
207 # endif
208 # ifndef EAI_MEMORY
209 # define EAI_MEMORY -10
210 # endif
211 #ifndef EAI_OVERFLOW
212 # define EAI_OVERFLOW -11
213 #endif
214 # ifndef EAI_SYSTEM
215 # define EAI_SYSTEM -12
216 # endif
219 # ifndef NI_MAXHOST
220 # define NI_MAXHOST 1025
221 # define NI_MAXSERV 32
222 # endif
223 # define NI_MAXNUMERICHOST 64
225 #ifndef AI_NUMERICSERV
226 # define AI_NUMERICSERV 0
227 #endif
228 #ifndef AI_IDN
229 # define AI_IDN 0 /* GNU/libc extension */
230 #endif
232 #ifdef _WIN32
233 # undef gai_strerror
234 # define gai_strerror gai_strerrorA
235 #endif
237 #ifdef __OS2__
238 # ifndef NI_NUMERICHOST
239 # define NI_NUMERICHOST 0x01
240 # define NI_NUMERICSERV 0x02
241 # define NI_NOFQDN 0x04
242 # define NI_NAMEREQD 0x08
243 # define NI_DGRAM 0x10
244 # endif
246 # define AI_PASSIVE 1
247 # define AI_CANONNAME 2
248 # define AI_NUMERICHOST 4
250 VLC_API const char *gai_strerror( int errnum );
252 VLC_API int getaddrinfo ( const char *, const char *,
253 const struct addrinfo *, struct addrinfo ** );
254 VLC_API void freeaddrinfo( struct addrinfo * );
255 VLC_API int getnameinfo ( const struct sockaddr *, socklen_t,
256 char *, int, char *, int, int );
257 #endif
259 VLC_API int vlc_getnameinfo( const struct sockaddr *, int, char *, int, int *, int );
260 VLC_API int vlc_getaddrinfo (const char *, unsigned,
261 const struct addrinfo *, struct addrinfo **);
264 #ifdef __OS2__
265 /* OS/2 does not support IPv6, yet. But declare these only for compilation */
266 struct in6_addr
268 uint8_t s6_addr[16];
271 struct sockaddr_in6
273 uint8_t sin6_len;
274 uint8_t sin6_family;
275 uint16_t sin6_port;
276 uint32_t sin6_flowinfo;
277 struct in6_addr sin6_addr;
278 uint32_t sin6_scope_id;
281 # define IN6_IS_ADDR_MULTICAST(a) (((__const uint8_t *) (a))[0] == 0xff)
283 static const struct in6_addr in6addr_any =
284 { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } };
285 #endif
287 static inline bool
288 net_SockAddrIsMulticast (const struct sockaddr *addr, socklen_t len)
290 switch (addr->sa_family)
292 #ifdef IN_MULTICAST
293 case AF_INET:
295 const struct sockaddr_in *v4 = (const struct sockaddr_in *)addr;
296 if ((size_t)len < sizeof (*v4))
297 return false;
298 return IN_MULTICAST (ntohl (v4->sin_addr.s_addr)) != 0;
300 #endif
302 #ifdef IN6_IS_ADDR_MULTICAST
303 case AF_INET6:
305 const struct sockaddr_in6 *v6 = (const struct sockaddr_in6 *)addr;
306 if ((size_t)len < sizeof (*v6))
307 return false;
308 return IN6_IS_ADDR_MULTICAST (&v6->sin6_addr) != 0;
310 #endif
313 return false;
317 static inline int net_GetSockAddress( int fd, char *address, int *port )
319 struct sockaddr_storage addr;
320 socklen_t addrlen = sizeof( addr );
322 return getsockname( fd, (struct sockaddr *)&addr, &addrlen )
323 || vlc_getnameinfo( (struct sockaddr *)&addr, addrlen, address,
324 NI_MAXNUMERICHOST, port, NI_NUMERICHOST )
325 ? VLC_EGENERIC : 0;
328 static inline int net_GetPeerAddress( int fd, char *address, int *port )
330 struct sockaddr_storage addr;
331 socklen_t addrlen = sizeof( addr );
333 return getpeername( fd, (struct sockaddr *)&addr, &addrlen )
334 || vlc_getnameinfo( (struct sockaddr *)&addr, addrlen, address,
335 NI_MAXNUMERICHOST, port, NI_NUMERICHOST )
336 ? VLC_EGENERIC : 0;
339 static inline uint16_t net_GetPort (const struct sockaddr *addr)
341 switch (addr->sa_family)
343 #ifdef AF_INET6
344 case AF_INET6:
345 return ((const struct sockaddr_in6 *)addr)->sin6_port;
346 #endif
347 case AF_INET:
348 return ((const struct sockaddr_in *)addr)->sin_port;
350 return 0;
353 static inline void net_SetPort (struct sockaddr *addr, uint16_t port)
355 switch (addr->sa_family)
357 #ifdef AF_INET6
358 case AF_INET6:
359 ((struct sockaddr_in6 *)addr)->sin6_port = port;
360 break;
361 #endif
362 case AF_INET:
363 ((struct sockaddr_in *)addr)->sin_port = port;
364 break;
368 VLC_API char *vlc_getProxyUrl(const char *);
370 # ifdef __cplusplus
372 # endif
374 #endif