diff options
Diffstat (limited to 'src/client.c')
| -rw-r--r-- | src/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.c b/src/client.c index 2210a3a..138caa0 100644 --- a/src/client.c +++ b/src/client.c @@ -44,9 +44,9 @@ static void initClient() #ifdef SUPPORT_NET_UNIX_UDP -int initUdpClient(char *ip, int port) +int initUdpClient(char *ip, int port, int proto) { - sock_server_udp = connectUdpSocket(ip, port); + sock_server_udp = connectUdpSocket(ip, port, proto); if( sock_server_udp == NULL ) { |