X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fhttpd.c;h=8a3844329d86fde041d4d83b14182e7ff7a2076b;hb=e1a8dfe69a0419217bcce0354fa920dc34a0569d;hp=6ad28696b397c3edc3247a1899035f5ace652510;hpb=91c41e1d717a00e2d7f046cc1943a2d7bf5cd475;p=deb_shairplay.git diff --git a/src/lib/httpd.c b/src/lib/httpd.c index 6ad2869..8a38443 100644 --- a/src/lib/httpd.c +++ b/src/lib/httpd.c @@ -235,10 +235,10 @@ httpd_thread(void *arg) assert(connection->request); } - logger_log(httpd->logger, LOGGER_DEBUG, "Receiving on socket %d\n", httpd->connections[i].socket_fd); + logger_log(httpd->logger, LOGGER_DEBUG, "Receiving on socket %d\n", connection->socket_fd); ret = recv(connection->socket_fd, buffer, sizeof(buffer), 0); if (ret == 0) { - logger_log(httpd->logger, LOGGER_INFO, "Connection closed\n"); + logger_log(httpd->logger, LOGGER_INFO, "Connection closed for socket %d\n", connection->socket_fd); httpd_remove_connection(httpd, connection); continue; } @@ -293,11 +293,11 @@ httpd_thread(void *arg) if (!connection->connected) { continue; } - logger_log(httpd->logger, LOGGER_INFO, "Removing connection\n"); + logger_log(httpd->logger, LOGGER_INFO, "Removing connection for socket %d\n", connection->socket_fd); httpd_remove_connection(httpd, connection); } - logger_log(httpd->logger, LOGGER_INFO, "Exiting thread\n"); + logger_log(httpd->logger, LOGGER_INFO, "Exiting HTTP thread\n"); return 0; }