Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/esp_http_server/src/
Dhttpd_main.c136 int ret = recv(hd->ctrl_fd, &msg, sizeof(msg), 0); in httpd_process_ctrl_msg()
196 FD_SET(hd->ctrl_fd, &read_set); in httpd_server()
202 maxfd = MAX(hd->ctrl_fd, tmp_max_fd); in httpd_server()
213 if (FD_ISSET(hd->ctrl_fd, &read_set)) { in httpd_server()
258 cs_free_ctrl_sock(hd->ctrl_fd); in httpd_thread()
315 int ctrl_fd = cs_create_ctrl_sock(hd->config.ctrl_port); in httpd_server_init() local
316 if (ctrl_fd < 0) { in httpd_server_init()
326 close(ctrl_fd); in httpd_server_init()
331 hd->ctrl_fd = ctrl_fd; in httpd_server_init()
Desp_httpd_priv.h109 int ctrl_fd; /*!< Ctrl message receiver FD */ member