diff options
author | Max Kellermann <max@duempel.org> | 2008-12-30 19:24:39 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-30 19:24:39 +0100 |
commit | 71e7ce5d8e3153342494685d60d7ff16d9b29101 (patch) | |
tree | ed9893562c16b7f8ab98a5c97bce79bcf1ae2267 /src/listen.h | |
parent | 03e650aa9e9a95575fccd51ec9f669abae52fe7e (diff) | |
download | mpd-71e7ce5d8e3153342494685d60d7ff16d9b29101.tar.gz mpd-71e7ce5d8e3153342494685d60d7ff16d9b29101.tar.xz mpd-71e7ce5d8e3153342494685d60d7ff16d9b29101.zip |
main: use the GLib main loop
This is a rather huge patch, which unfortunately cannot be splitted.
Instead of using our custom ioops.h library, convert everything to use
the GLib main loop.
Diffstat (limited to '')
-rw-r--r-- | src/listen.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/listen.h b/src/listen.h index 625cb006c..f89c4f030 100644 --- a/src/listen.h +++ b/src/listen.h @@ -19,17 +19,10 @@ #ifndef MPD_LISTEN_H #define MPD_LISTEN_H -#include <sys/select.h> - extern int boundPort; void listenOnPort(void); -void getConnections(fd_set * fds); - void closeAllListenSockets(void); -/* fdmax should be initialized to something */ -void addListenSocketsToFdSet(fd_set * fds, int *fdmax); - #endif |