From bd5a70c71285265e59685b7b55cf31069785a58f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 18 Oct 2013 08:30:44 +0200 Subject: input/curl: use MultiSocketMonitor constants instead of GLib --- src/input/CurlInputPlugin.cxx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/input/CurlInputPlugin.cxx') diff --git a/src/input/CurlInputPlugin.cxx b/src/input/CurlInputPlugin.cxx index 6f11153ec..8f54898fc 100644 --- a/src/input/CurlInputPlugin.cxx +++ b/src/input/CurlInputPlugin.cxx @@ -257,17 +257,20 @@ input_curl_fd_events(int fd, fd_set *rfds, fd_set *wfds, fd_set *efds) gushort events = 0; if (FD_ISSET(fd, rfds)) { - events |= G_IO_IN | G_IO_HUP | G_IO_ERR; + events |= MultiSocketMonitor::READ | MultiSocketMonitor::HANGUP + | MultiSocketMonitor::ERROR; FD_CLR(fd, rfds); } if (FD_ISSET(fd, wfds)) { - events |= G_IO_OUT | G_IO_ERR; + events |= MultiSocketMonitor::WRITE | + MultiSocketMonitor::ERROR; FD_CLR(fd, wfds); } if (FD_ISSET(fd, efds)) { - events |= G_IO_HUP | G_IO_ERR; + events |= MultiSocketMonitor::HANGUP | + MultiSocketMonitor::ERROR; FD_CLR(fd, efds); } -- cgit v1.2.3