summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorunknown <bundra@.(none)>2010-03-01 18:33:16 +0100
committerunknown <bundra@.(none)>2010-03-01 18:33:16 +0100
commit157a66fc42d46c79edc01f6feed8f482fb5d53f1 (patch)
treed0723f777fff05e354ab30d6a268c83a02e2f5c2 /src
parent4e7158b67dcbbc307e76616a85aa34cc83ad6606 (diff)
polling on POSIX sockets returns POLLERR (win32)
Diffstat (limited to 'src')
-rw-r--r--src/zmq.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/zmq.cpp b/src/zmq.cpp
index 7ff1e52..409416d 100644
--- a/src/zmq.cpp
+++ b/src/zmq.cpp
@@ -504,6 +504,8 @@ int zmq_poll (zmq_pollitem_t *items_, int nitems_, long timeout_)
FD_SET (items_ [i].fd, &pollset_in);
if (items_ [i].events & ZMQ_POLLOUT)
FD_SET (items_ [i].fd, &pollset_out);
+ if (items_ [i].events & ZMQ_POLLERR)
+ FD_SET (items_ [i].fd, &pollset_err);
if (maxfd == zmq::retired_fd || maxfd < items_ [i].fd)
maxfd = items_ [i].fd;
}
@@ -554,9 +556,13 @@ int zmq_poll (zmq_pollitem_t *items_, int nitems_, long timeout_)
// If the poll item is a raw file descriptor, simply convert
// the events to zmq_pollitem_t-style format.
if (!items_ [i].socket) {
- items_ [i].revents =
- (FD_ISSET (items_ [i].fd, &inset) ? ZMQ_POLLIN : 0) |
- (FD_ISSET (items_ [i].fd, &outset) ? ZMQ_POLLOUT : 0);
+ items_ [i].revents = 0;
+ if (FD_ISSET (items_ [i].fd, &inset))
+ items_ [i].revents |= ZMQ_POLLIN;
+ if (FD_ISSET (items_ [i].fd, &outset))
+ items_ [i].revents |= ZMQ_POLLOUT;
+ if (FD_ISSET (items_ [i].fd, &errset))
+ items_ [i].revents |= ZMQ_POLLERR;
if (items_ [i].revents)
nevents++;
continue;