Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/esp_http_server/src/
Dhttpd_sess.c42 if ((!hd) || (!hd->hd_sd) || (!hd->config.max_open_sockets)) { in httpd_sess_enum()
47 struct sock_db *end = hd->hd_sd + hd->config.max_open_sockets - 1; in httpd_sess_enum()
150 if ((!hd) || (hd->hd_sd_active_count == hd->config.max_open_sockets)) { in httpd_sess_get_free()
167 if ((!hd) || (!hd->hd_sd) || (!hd->config.max_open_sockets)) { in httpd_sess_get()
Dhttpd_main.c110 for (int i = 0; i < hd->config.max_open_sockets; ++i) { in httpd_get_client_list()
350 hd->hd_sd = calloc(config->max_open_sockets, sizeof(struct sock_db)); in httpd_create()
410 if (CONFIG_LWIP_MAX_SOCKETS < config->max_open_sockets + 3) { in httpd_start()
/hal_espressif-3.6.0/components/esp_https_server/include/
Desp_https_server.h111 .max_open_sockets = 4, \
/hal_espressif-3.6.0/components/esp_http_server/include/
Desp_http_server.h32 .max_open_sockets = 7, \
150 uint16_t max_open_sockets; /*!< Max number of sockets/clients connected at any time*/ member
/hal_espressif-3.6.0/examples/protocols/http_server/advanced_tests/main/
Dtests.c376 config.max_open_sockets = (CONFIG_LWIP_MAX_SOCKETS - 3); in test_httpd_start()
381 ESP_LOGI(TAG, "Max Open Sessions: '%d'", config.max_open_sockets); in test_httpd_start()
/hal_espressif-3.6.0/examples/protocols/http_server/captive_portal/main/
Dmain.c118 config.max_open_sockets = 13; in start_webserver()
/hal_espressif-3.6.0/components/esp_http_server/test/
Dtest_http_server.c243 config.max_open_sockets += 1;
/hal_espressif-3.6.0/components/protocomm/src/transports/
Dprotocomm_httpd.c285 server_config.max_open_sockets = 1; in protocomm_httpd_start()
/hal_espressif-3.6.0/examples/protocols/https_server/wss_server/main/
Dwss_server_example.c180 conf.httpd.max_open_sockets = max_clients; in start_wss_echo_server()