Merge pull request #55 from kezhuw/fixes

bugfix: missing setting socket to non blocking
This commit is contained in:
云风
2013-11-14 18:26:17 -08:00

View File

@@ -282,6 +282,9 @@ open_socket(struct socket_server *ss, struct request_open * request, struct sock
sock = -1;
continue;
}
if (blocking) {
sp_nonblocking(sock);
}
break;
}