Browse Source

Avoid blocking setting ret to -1.

master
Con Kolivas 7 years ago
parent
commit
22baa341f7
  1. 7
      src/generator.c

7
src/generator.c

@ -1848,9 +1848,12 @@ static void send_json_msgq(cs_msg_t **csmsgq)
fd = proxy->cs.fd;
ret = send(fd, csmsg->buf + csmsg->ofs, csmsg->len, MSG_DONTWAIT);
if (ret < 1) {
if (!ret || errno == EAGAIN || errno == EWOULDBLOCK)
if (!ret)
break;
ret = 0;
if (errno == EAGAIN || errno == EWOULDBLOCK)
break;
csmsg->len = ret = 0;
csmsg->len = 0;
LOGNOTICE("Proxy %d:%d %s failed to send msg in send_json_msgq, dropping",
proxy->id, proxy->subid, proxy->url);
set_proxy_disabled(proxy);

Loading…
Cancel
Save