Home
last modified time | relevance | path

Searched refs:read_set (Results 1 – 1 of 1) sorted by relevance

/hal_espressif-2.7.6/components/esp_http_server/src/
Dhttpd_main.c177 fd_set read_set; in httpd_server() local
178 FD_ZERO(&read_set); in httpd_server()
183 FD_SET(hd->listen_fd, &read_set); in httpd_server()
185 FD_SET(hd->ctrl_fd, &read_set); in httpd_server()
188 httpd_sess_set_descriptors(hd, &read_set, &tmp_max_fd); in httpd_server()
194 int active_cnt = select(maxfd + 1, &read_set, NULL, NULL, NULL); in httpd_server()
202 if (FD_ISSET(hd->ctrl_fd, &read_set)) { in httpd_server()
215 if (FD_ISSET(fd, &read_set) || (httpd_sess_pending(hd, fd))) { in httpd_server()
229 if (FD_ISSET(hd->listen_fd, &read_set)) { in httpd_server()