aboutsummaryrefslogtreecommitdiffstats
path: root/src/udp_server.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2011-09-19 20:40:33 +0200
committerMax Kellermann <max@duempel.org>2011-09-20 08:47:42 +0200
commitf43873dc5fc845d4a195ea8b2328fcc9ae3565b1 (patch)
tree5f8810a33fb8591a7942d8bb22a6ed9cfc598d90 /src/udp_server.c
parent921553d7bb38345ba99c069fa1ee7816d5130c9b (diff)
downloadmpd-f43873dc5fc845d4a195ea8b2328fcc9ae3565b1.tar.gz
mpd-f43873dc5fc845d4a195ea8b2328fcc9ae3565b1.tar.xz
mpd-f43873dc5fc845d4a195ea8b2328fcc9ae3565b1.zip
tcp_socket, udp_server: use g_io_channel_new_socket()
Diffstat (limited to '')
-rw-r--r--src/udp_server.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/udp_server.c b/src/udp_server.c
index 152eb37d1..e1c0b1545 100644
--- a/src/udp_server.c
+++ b/src/udp_server.c
@@ -19,6 +19,7 @@
#include "udp_server.h"
#include "io_thread.h"
+#include "glib_socket.h"
#include "gcc.h"
#include <glib.h>
@@ -112,11 +113,7 @@ udp_server_new(unsigned port,
udp->handler_ctx = ctx;
udp->fd = fd;
-#ifndef G_OS_WIN32
- udp->channel = g_io_channel_unix_new(fd);
-#else
- udp->channel = g_io_channel_win32_new_socket(fd);
-#endif
+ udp->channel = g_io_channel_new_socket(fd);
/* NULL encoding means the stream is binary safe */
g_io_channel_set_encoding(udp->channel, NULL, NULL);
/* no buffering */