X-Git-Url: http://git.pk910.de/?p=IOMultiplexer.git;a=blobdiff_plain;f=src%2FIOHandler.c;h=06e2bff70825241b2a8f17fc8c2242dad79f37ad;hp=b2a391bf11e68388112f107a56747f84f6e8cde2;hb=HEAD;hpb=f83bd22fe2dcb3ca0ddb9321944ee0b9c9b61ea6 diff --git a/src/IOHandler.c b/src/IOHandler.c index b2a391b..06e2bff 100644 --- a/src/IOHandler.c +++ b/src/IOHandler.c @@ -34,6 +34,7 @@ #include #include #include +#include #endif #ifndef EWOULDBLOCK @@ -408,11 +409,11 @@ struct IODescriptor *iohandler_connect_flags(const char *hostname, unsigned int //make sockfd unblocking #if defined(F_GETFL) { - int flags; - flags = fcntl(sockfd, F_GETFL); - fcntl(sockfd, F_SETFL, flags|O_NONBLOCK); - flags = fcntl(sockfd, F_GETFD); - fcntl(sockfd, F_SETFD, flags|FD_CLOEXEC); + int fcntl_flags; + fcntl_flags = fcntl(sockfd, F_GETFL); + fcntl(sockfd, F_SETFL, fcntl_flags|O_NONBLOCK); + fcntl_flags = fcntl(sockfd, F_GETFD); + fcntl(sockfd, F_SETFD, fcntl_flags|FD_CLOEXEC); } #else /* I hope you're using the Win32 backend or something else that @@ -480,7 +481,7 @@ struct IODescriptor *iohandler_listen_flags(const char *hostname, unsigned int p ip6->sin6_port = htons(port); bind(sockfd, (struct sockaddr*)ip6, sizeof(*ip6)); - } else if(ip4 && (flags && IOHANDLER_LISTEN_IPV4)) { + } else if(ip4 && (flags & IOHANDLER_LISTEN_IPV4)) { sockfd = socket(AF_INET, SOCK_STREAM, 0); if(sockfd == -1) return NULL;