X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_network.h;h=c3cc983469e3d785983fc0d4512ff725c5678a0e;hb=012d9633172d7dadfab6f41bd4a26fe312a11874;hp=8a2b440f83fd3b5ad945cbc7676ac431ff6c3688;hpb=c0f4bfc5d85c96cf29f4bd05fa5fa42eb344d1dc;p=vlc diff --git a/include/vlc_network.h b/include/vlc_network.h index 8a2b440f83..c3cc983469 100644 --- a/include/vlc_network.h +++ b/include/vlc_network.h @@ -27,6 +27,11 @@ #ifndef VLC_NETWORK_H # define VLC_NETWORK_H +/** + * \file + * This file defines interface to communicate with network plug-ins + */ + #if defined( WIN32 ) # if !defined(UNDER_CE) # define _NO_OLDNAMES 1 @@ -55,9 +60,6 @@ struct msghdr int msg_flags; }; -#define sendmsg vlc_sendmsg -#define recvmsg vlc_recvmsg - # ifndef IPV6_V6ONLY # define IPV6_V6ONLY 27 # endif @@ -75,9 +77,6 @@ struct msghdr # define net_errno errno #endif -VLC_EXPORT( ssize_t, vlc_sendmsg, ( int, struct msghdr *, int ) ); -VLC_EXPORT( ssize_t, vlc_recvmsg, ( int, struct msghdr *, int ) ); - # ifdef __cplusplus extern "C" { # endif @@ -102,8 +101,9 @@ static inline int __net_ConnectTCP (vlc_object_t *obj, const char *host, int por VLC_EXPORT( int, net_AcceptSingle, (vlc_object_t *obj, int lfd) ); -#define net_Accept(a, b, c) __net_Accept(VLC_OBJECT(a), b, c) VLC_EXPORT( int, __net_Accept, ( vlc_object_t *, int *, mtime_t ) ); +#define net_Accept(a, b, c) \ + __net_Accept(VLC_OBJECT(a), b, (c == -1) ? -1 : (c ? check_delay(c) : 0)) #define net_ConnectDgram(a, b, c, d, e ) __net_ConnectDgram(VLC_OBJECT(a), b, c, d, e) VLC_EXPORT( int, __net_ConnectDgram, ( vlc_object_t *p_this, const char *psz_host, int i_port, int hlim, int proto ) ); @@ -137,10 +137,10 @@ struct virtual_socket_t }; #define net_Read(a,b,c,d,e,f) __net_Read(VLC_OBJECT(a),b,c,d,e,f) -VLC_EXPORT( ssize_t, __net_Read, ( vlc_object_t *p_this, int fd, const v_socket_t *, uint8_t *p_data, size_t i_data, bool b_retry ) ); +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 ) ); #define net_Write(a,b,c,d,e) __net_Write(VLC_OBJECT(a),b,c,d,e) -VLC_EXPORT( ssize_t, __net_Write, ( vlc_object_t *p_this, int fd, const v_socket_t *, const uint8_t *p_data, size_t i_data ) ); +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 ) ); #define net_Gets(a,b,c) __net_Gets(VLC_OBJECT(a),b,c) VLC_EXPORT( char *, __net_Gets, ( vlc_object_t *p_this, int fd, const v_socket_t * ) ); @@ -180,10 +180,11 @@ struct pollfd int events; int revents; }; - -VLC_EXPORT (int, vlc_poll, (struct pollfd *fds, unsigned nfds, int timeout)); # define poll(a, b, c) vlc_poll(a, b, c) #endif +struct pollfd; +VLC_EXPORT (int, vlc_poll, (struct pollfd *fds, unsigned nfds, int timeout)); + #ifdef WIN32 /* Microsoft: same semantic, same value, different name... go figure */