Commit 9242bbe1 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

net: remove leading underscores

parent 998ebb85
...@@ -85,19 +85,18 @@ extern "C" { ...@@ -85,19 +85,18 @@ extern "C" {
int net_Socket (vlc_object_t *obj, int family, int socktype, int proto); int net_Socket (vlc_object_t *obj, int family, int socktype, int proto);
int net_SetupSocket (int fd); int net_SetupSocket (int fd);
#define net_Connect(a, b, c, d, e) __net_Connect(VLC_OBJECT(a), b, c, d, e) VLC_EXPORT( int, net_Connect, (vlc_object_t *p_this, const char *psz_host, int i_port, int socktype, int protocol) );
VLC_EXPORT( int, __net_Connect, (vlc_object_t *p_this, const char *psz_host, int i_port, int socktype, int protocol) ); #define net_Connect(a, b, c, d, e) net_Connect(VLC_OBJECT(a), b, c, d, e)
VLC_EXPORT( int *, net_Listen, (vlc_object_t *p_this, const char *psz_host, int i_port, int protocol) ); VLC_EXPORT( int *, net_Listen, (vlc_object_t *p_this, const char *psz_host, int i_port, int protocol) );
#define net_ListenTCP(a, b, c) net_Listen(VLC_OBJECT(a), b, c, IPPROTO_TCP) #define net_ListenTCP(a, b, c) net_Listen(VLC_OBJECT(a), b, c, IPPROTO_TCP)
#define net_ConnectTCP(a, b, c) __net_ConnectTCP(VLC_OBJECT(a), b, c)
static inline int __net_ConnectTCP (vlc_object_t *obj, const char *host, int port) static inline int net_ConnectTCP (vlc_object_t *obj, const char *host, int port)
{ {
return __net_Connect (obj, host, port, SOCK_STREAM, IPPROTO_TCP); return net_Connect (obj, host, port, SOCK_STREAM, IPPROTO_TCP);
} }
#define net_ConnectTCP(a, b, c) net_ConnectTCP(VLC_OBJECT(a), b, c)
VLC_EXPORT( int, net_AcceptSingle, (vlc_object_t *obj, int lfd) ); VLC_EXPORT( int, net_AcceptSingle, (vlc_object_t *obj, int lfd) );
...@@ -105,16 +104,18 @@ VLC_EXPORT( int, net_Accept, ( vlc_object_t *, int * ) ); ...@@ -105,16 +104,18 @@ VLC_EXPORT( int, net_Accept, ( vlc_object_t *, int * ) );
#define net_Accept(a, b) \ #define net_Accept(a, b) \
net_Accept(VLC_OBJECT(a), b) net_Accept(VLC_OBJECT(a), b)
#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 ) );
VLC_EXPORT( int, __net_ConnectDgram, ( vlc_object_t *p_this, const char *psz_host, int i_port, int hlim, int proto ) ); #define net_ConnectDgram(a, b, c, d, e ) \
net_ConnectDgram(VLC_OBJECT(a), b, c, d, e)
static inline int net_ConnectUDP (vlc_object_t *obj, const char *host, int port, int hlim) static inline int net_ConnectUDP (vlc_object_t *obj, const char *host, int port, int hlim)
{ {
return net_ConnectDgram (obj, host, port, hlim, IPPROTO_UDP); return net_ConnectDgram (obj, host, port, hlim, IPPROTO_UDP);
} }
#define net_OpenDgram( a, b, c, d, e, g, h ) __net_OpenDgram(VLC_OBJECT(a), b, c, d, e, g, h) 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 ) );
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 ) ); #define net_OpenDgram( a, b, c, d, e, g, h ) \
net_OpenDgram(VLC_OBJECT(a), b, c, d, e, g, h)
static inline int net_ListenUDP1 (vlc_object_t *obj, const char *host, int port) static inline int net_ListenUDP1 (vlc_object_t *obj, const char *host, int port)
{ {
...@@ -136,20 +137,17 @@ struct virtual_socket_t ...@@ -136,20 +137,17 @@ struct virtual_socket_t
int (*pf_send) ( void *, const void *, int ); int (*pf_send) ( void *, const void *, int );
}; };
#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 *, void *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_Read(a,b,c,d,e,f) net_Read(VLC_OBJECT(a),b,c,d,e,f)
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_Write(a,b,c,d,e) __net_Write(VLC_OBJECT(a),b,c,d,e) #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 void *p_data, size_t i_data ) ); VLC_EXPORT( char *, net_Gets, ( vlc_object_t *p_this, int fd, const v_socket_t * ) );
#define net_Gets(a,b,c) net_Gets(VLC_OBJECT(a),b,c)
#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 * ) );
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 ) ); 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 ) );
VLC_EXPORT( ssize_t, net_vaPrintf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, va_list args ) );
#define net_vaPrintf(a,b,c,d,e) __net_vaPrintf(VLC_OBJECT(a),b,c,d,e) #define net_vaPrintf(a,b,c,d,e) net_vaPrintf(VLC_OBJECT(a),b,c,d,e)
VLC_EXPORT( ssize_t, __net_vaPrintf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, va_list args ) );
VLC_EXPORT (int, vlc_inet_pton, (int af, const char *src, void *dst) ); VLC_EXPORT (int, vlc_inet_pton, (int af, const char *src, void *dst) );
VLC_EXPORT (const char *, vlc_inet_ntop, (int af, const void *src, VLC_EXPORT (const char *, vlc_inet_ntop, (int af, const void *src,
......
...@@ -263,17 +263,17 @@ mstrtime ...@@ -263,17 +263,17 @@ mstrtime
mwait mwait
net_Accept net_Accept
net_AcceptSingle net_AcceptSingle
__net_Connect net_Connect
__net_ConnectDgram net_ConnectDgram
__net_Gets net_Gets
net_Listen net_Listen
net_ListenClose net_ListenClose
__net_OpenDgram net_OpenDgram
net_Printf net_Printf
__net_Read net_Read
net_SetCSCov net_SetCSCov
__net_vaPrintf net_vaPrintf
__net_Write net_Write
NTPtime64 NTPtime64
__osd_ButtonFind __osd_ButtonFind
__osd_ButtonSelect __osd_ButtonSelect
......
...@@ -271,9 +271,9 @@ int *net_Listen (vlc_object_t *p_this, const char *psz_host, ...@@ -271,9 +271,9 @@ int *net_Listen (vlc_object_t *p_this, const char *psz_host,
return sockv; return sockv;
} }
#undef net_Read
/***************************************************************************** /*****************************************************************************
* __net_Read: * net_Read:
***************************************************************************** *****************************************************************************
* Reads from a network socket. Cancellation point. * Reads from a network socket. Cancellation point.
* If waitall is true, then we repeat until we have read the right amount of * If waitall is true, then we repeat until we have read the right amount of
...@@ -281,8 +281,8 @@ int *net_Listen (vlc_object_t *p_this, const char *psz_host, ...@@ -281,8 +281,8 @@ int *net_Listen (vlc_object_t *p_this, const char *psz_host,
* object has been signaled. * object has been signaled.
*****************************************************************************/ *****************************************************************************/
ssize_t ssize_t
__net_Read (vlc_object_t *restrict p_this, int fd, const v_socket_t *vs, net_Read (vlc_object_t *restrict p_this, int fd, const v_socket_t *vs,
void *restrict p_buf, size_t i_buflen, bool waitall) void *restrict p_buf, size_t i_buflen, bool waitall)
{ {
size_t i_total = 0; size_t i_total = 0;
struct pollfd ufd[2] = { struct pollfd ufd[2] = {
...@@ -408,10 +408,10 @@ silent: ...@@ -408,10 +408,10 @@ silent:
return -1; return -1;
} }
#undef net_Write
/* Write exact amount requested */ /* Write exact amount requested */
ssize_t __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs, ssize_t net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
const void *restrict p_data, size_t i_data ) const void *restrict p_data, size_t i_data )
{ {
size_t i_total = 0; size_t i_total = 0;
struct pollfd ufd[2] = { struct pollfd ufd[2] = {
...@@ -484,6 +484,7 @@ error: ...@@ -484,6 +484,7 @@ error:
return -1; return -1;
} }
#undef net_Gets
/** /**
* Reads a line from a file descriptor. * Reads a line from a file descriptor.
* This function is not thread-safe; the same file descriptor cI/O annot be read * This function is not thread-safe; the same file descriptor cI/O annot be read
...@@ -491,7 +492,7 @@ error: ...@@ -491,7 +492,7 @@ error:
* *
* @return nul-terminated heap-allocated string, or NULL on I/O error. * @return nul-terminated heap-allocated string, or NULL on I/O error.
*/ */
char *__net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs ) char *net_Gets( vlc_object_t *p_this, int fd, const v_socket_t *p_vs )
{ {
char *psz_line = NULL, *ptr = NULL; char *psz_line = NULL, *ptr = NULL;
size_t i_line = 0, i_max = 0; size_t i_line = 0, i_max = 0;
...@@ -543,8 +544,9 @@ ssize_t net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs, ...@@ -543,8 +544,9 @@ ssize_t net_Printf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
return i_ret; return i_ret;
} }
ssize_t __net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs, #undef net_vaPrintf
const char *psz_fmt, va_list args ) ssize_t net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
const char *psz_fmt, va_list args )
{ {
char *psz; char *psz;
int i_ret; int i_ret;
...@@ -552,7 +554,7 @@ ssize_t __net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs, ...@@ -552,7 +554,7 @@ ssize_t __net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
int i_size = vasprintf( &psz, psz_fmt, args ); int i_size = vasprintf( &psz, psz_fmt, args );
if( i_size == -1 ) if( i_size == -1 )
return -1; return -1;
i_ret = __net_Write( p_this, fd, p_vs, psz, i_size ) < i_size i_ret = net_Write( p_this, fd, p_vs, psz, i_size ) < i_size
? -1 : i_size; ? -1 : i_size;
free( psz ); free( psz );
......
...@@ -65,14 +65,15 @@ static int SocksHandshakeTCP( vlc_object_t *, ...@@ -65,14 +65,15 @@ static int SocksHandshakeTCP( vlc_object_t *,
extern int net_Socket( vlc_object_t *p_this, int i_family, int i_socktype, extern int net_Socket( vlc_object_t *p_this, int i_family, int i_socktype,
int i_protocol ); int i_protocol );
#undef net_Connect
/***************************************************************************** /*****************************************************************************
* __net_Connect: * net_Connect:
***************************************************************************** *****************************************************************************
* Open a network connection. * Open a network connection.
* @return socket handler or -1 on error. * @return socket handler or -1 on error.
*****************************************************************************/ *****************************************************************************/
int __net_Connect( vlc_object_t *p_this, const char *psz_host, int i_port, int net_Connect( vlc_object_t *p_this, const char *psz_host, int i_port,
int type, int proto ) int type, int proto )
{ {
struct addrinfo hints, *res, *ptr; struct addrinfo hints, *res, *ptr;
const char *psz_realhost; const char *psz_realhost;
......
...@@ -642,15 +642,15 @@ static int net_SetDSCP( int fd, uint8_t dscp ) ...@@ -642,15 +642,15 @@ static int net_SetDSCP( int fd, uint8_t dscp )
return setsockopt( fd, level, cmd, &(int){ dscp }, sizeof (int)); return setsockopt( fd, level, cmd, &(int){ dscp }, sizeof (int));
} }
#undef net_ConnectDgram
/***************************************************************************** /*****************************************************************************
* __net_ConnectDgram: * net_ConnectDgram:
***************************************************************************** *****************************************************************************
* Open a datagram socket to send data to a defined destination, with an * Open a datagram socket to send data to a defined destination, with an
* optional hop limit. * optional hop limit.
*****************************************************************************/ *****************************************************************************/
int __net_ConnectDgram( vlc_object_t *p_this, const char *psz_host, int i_port, int net_ConnectDgram( vlc_object_t *p_this, const char *psz_host, int i_port,
int i_hlim, int proto ) int i_hlim, int proto )
{ {
struct addrinfo hints, *res, *ptr; struct addrinfo hints, *res, *ptr;
int i_val, i_handle = -1; int i_val, i_handle = -1;
...@@ -744,15 +744,15 @@ int __net_ConnectDgram( vlc_object_t *p_this, const char *psz_host, int i_port, ...@@ -744,15 +744,15 @@ int __net_ConnectDgram( vlc_object_t *p_this, const char *psz_host, int i_port,
return i_handle; return i_handle;
} }
#undef net_OpenDgram
/***************************************************************************** /*****************************************************************************
* __net_OpenDgram: * net_OpenDgram:
***************************************************************************** *****************************************************************************
* OpenDgram a datagram socket and return a handle * OpenDgram a datagram socket and return a handle
*****************************************************************************/ *****************************************************************************/
int __net_OpenDgram( vlc_object_t *obj, const char *psz_bind, int i_bind, int net_OpenDgram( vlc_object_t *obj, const char *psz_bind, int i_bind,
const char *psz_server, int i_server, const char *psz_server, int i_server,
int family, int protocol ) int family, int protocol )
{ {
if ((psz_server == NULL) || (psz_server[0] == '\0')) if ((psz_server == NULL) || (psz_server[0] == '\0'))
return net_ListenSingle (obj, psz_bind, i_bind, family, protocol); return net_ListenSingle (obj, psz_bind, i_bind, family, protocol);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment