Browse Source

Don't use MSG_WAITALL on unix sockets

master
Con Kolivas 10 years ago
parent
commit
24d89a3e72
  1. 2
      src/libckpool.c

2
src/libckpool.c

@ -932,7 +932,7 @@ int read_length(int sockd, void *buf, int len)
if (unlikely(sockd < 0))
return -1;
while (len) {
ret = recv(sockd, buf + ofs, len, MSG_WAITALL);
ret = recv(sockd, buf + ofs, len, 0);
if (unlikely(ret < 1))
return -1;
ofs += ret;

Loading…
Cancel
Save