mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
reduce debug logging mark socket dead when pollert
Signed-off-by: Andy Green <andy.green@linaro.org>
This commit is contained in:
parent
ba119e9057
commit
8d5351a0c4
2 changed files with 5 additions and 5 deletions
|
@ -131,8 +131,8 @@ int lws_issue_raw(struct lws *wsi, unsigned char *buf, size_t len)
|
|||
|
||||
switch (n) {
|
||||
case LWS_SSL_CAPABLE_ERROR:
|
||||
lwsl_err("%s: wsi %p: LWS_SSL_CAPABLE_ERROR\n", __func__,
|
||||
(void *)wsi);
|
||||
// lwsl_err("%s: wsi %p: LWS_SSL_CAPABLE_ERROR\n", __func__,
|
||||
// (void *)wsi);
|
||||
/* we're going to close, let close know sends aren't possible */
|
||||
wsi->socket_is_permanently_unusable = 1;
|
||||
return -1;
|
||||
|
@ -643,7 +643,7 @@ lws_ssl_capable_write_no_ssl(struct lws *wsi, unsigned char *buf, int len)
|
|||
|
||||
#if LWS_POSIX
|
||||
n = send(wsi->sock, (char *)buf, len, MSG_NOSIGNAL);
|
||||
lwsl_info("%s: sent len %d result %d", __func__, len, n);
|
||||
// lwsl_info("%s: sent len %d result %d", __func__, len, n);
|
||||
if (n >= 0)
|
||||
return n;
|
||||
|
||||
|
|
|
@ -436,7 +436,7 @@ lws_service_fd_tsi(struct lws_context *context, struct lws_pollfd *pollfd, int t
|
|||
}
|
||||
wsi = wsi1;
|
||||
}
|
||||
#if 1
|
||||
#if 0
|
||||
{
|
||||
char s[300], *p = s;
|
||||
|
||||
|
@ -475,7 +475,7 @@ lws_service_fd_tsi(struct lws_context *context, struct lws_pollfd *pollfd, int t
|
|||
|
||||
if ((!(pollfd->revents & pollfd->events & LWS_POLLIN)) &&
|
||||
(pollfd->revents & LWS_POLLHUP)) {
|
||||
|
||||
wsi->socket_is_permanently_unusable = 1;
|
||||
lwsl_debug("Session Socket %p (fd=%d) dead\n",
|
||||
(void *)wsi, pollfd->fd);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue