aboutsummaryrefslogtreecommitdiff
path: root/src/listen.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-12-30 19:24:39 +0100
committerMax Kellermann <max@duempel.org>2008-12-30 19:24:39 +0100
commit71e7ce5d8e3153342494685d60d7ff16d9b29101 (patch)
treeed9893562c16b7f8ab98a5c97bce79bcf1ae2267 /src/listen.h
parent03e650aa9e9a95575fccd51ec9f669abae52fe7e (diff)
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 'src/listen.h')
-rw-r--r--src/listen.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/listen.h b/src/listen.h
index 625cb006..f89c4f03 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