Searched refs:new_fd (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-2.7.6/components/esp_http_server/src/ |
D | httpd_main.c | 47 int new_fd = accept(listen_fd, (struct sockaddr *)&addr_from, &addr_from_len); in httpd_accept_conn() local 48 if (new_fd < 0) { in httpd_accept_conn() 52 ESP_LOGD(TAG, LOG_FMT("newfd = %d"), new_fd); in httpd_accept_conn() 58 setsockopt(new_fd, SOL_SOCKET, SO_RCVTIMEO, (const char*)&tv, sizeof(tv)); in httpd_accept_conn() 63 setsockopt(new_fd, SOL_SOCKET, SO_SNDTIMEO, (const char*)&tv, sizeof(tv)); in httpd_accept_conn() 65 if (ESP_OK != httpd_sess_new(hd, new_fd)) { in httpd_accept_conn() 67 close(new_fd); in httpd_accept_conn()
|