diff options
| author | Dusan Durech <dusan@debian.debian> | 2009-03-01 18:09:11 +0100 |
|---|---|---|
| committer | Dusan Durech <dusan@debian.debian> | 2009-03-01 18:09:11 +0100 |
| commit | b21832e8d922351169ab4d06e7993ed401fe0924 (patch) | |
| tree | 882f8d3deb61ea8a4586a06c9c5cb5f2e8206054 /src/base/downServer.c | |
| parent | 0fe84801e04022b1c92de363ec907fa6dd63bfd2 (diff) | |
API to UDP and TCP has been modified so that they can be used independet from protocols IPv4 and IPv6
Diffstat (limited to 'src/base/downServer.c')
| -rw-r--r-- | src/base/downServer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/downServer.c b/src/base/downServer.c index 3781ad9..46307cb 100644 --- a/src/base/downServer.c +++ b/src/base/downServer.c @@ -127,7 +127,7 @@ static void destroyClient(client_ds_t *client) int initDownServer(char *ip4, int port4) { - sock_server_tcp = bindTcpSocket(ip4, port4, PROTO_TCPv4); + sock_server_tcp = bindTcpSocket(ip4, port4); if( sock_server_tcp == NULL ) { |