Home
last modified time | relevance | path

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

/hal_espressif-3.5.0/components/esp_http_server/src/
Dhttpd_main.c111 if (hd->hd_sd[i].fd != -1) { in httpd_get_client_list()
113 client_fds[(*fds)++] = hd->hd_sd[i].fd; in httpd_get_client_list()
350 hd->hd_sd = calloc(config->max_open_sockets, sizeof(struct sock_db)); in httpd_create()
351 if (!hd->hd_sd) { in httpd_create()
361 free(hd->hd_sd); in httpd_create()
370 free(hd->hd_sd); in httpd_create()
386 free(hd->hd_sd); in httpd_delete()
Dhttpd_sess.c42 if ((!hd) || (!hd->hd_sd) || (!hd->config.max_open_sockets)) { in httpd_sess_enum()
46 struct sock_db *current = hd->hd_sd; in httpd_sess_enum()
47 struct sock_db *end = hd->hd_sd + hd->config.max_open_sockets - 1; in httpd_sess_enum()
167 if ((!hd) || (!hd->hd_sd) || (!hd->config.max_open_sockets)) { in httpd_sess_get()
Desp_httpd_priv.h112 struct sock_db *hd_sd; /*!< The socket database */ member