Searched refs:httpd_start (Results 1 – 13 of 13) sorted by relevance
/hal_espressif-2.7.6/components/esp_http_server/test/ |
D | test_http_server.c | 103 TEST_ASSERT(httpd_start(&hd, &config) == ESP_OK) in test_httpd_start() 166 TEST_ASSERT(httpd_start(&hd, &config) == ESP_OK); 244 TEST_ASSERT(httpd_start(&hd, &config) == ESP_OK); 252 TEST_ASSERT(httpd_start(&hd, &config) != ESP_OK);
|
/hal_espressif-2.7.6/docs/zh_CN/api-reference/protocols/ |
D | esp_http_server.rst | 10 …c:`httpd_start`: 创建 HTTP 服务器的实例,根据具体的配置为其分配内存和资源,并返回该服务器实例的句柄。服务器使用了两个套接字,一个用来监听 HTTP 流量(TCP 类型),另… 85 if (httpd_start(&server, &config) == ESP_OK) {
|
/hal_espressif-2.7.6/docs/en/api-reference/protocols/ |
D | esp_http_server.rst | 10 …httpd_start`: Creates an instance of HTTP server, allocate memory/resources for it depending upon … 89 if (httpd_start(&server, &config) == ESP_OK) {
|
/hal_espressif-2.7.6/examples/protocols/http_server/ws_echo_server/main/ |
D | ws_echo_server.c | 110 if (httpd_start(&server, &config) == ESP_OK) { in start_webserver()
|
/hal_espressif-2.7.6/examples/protocols/http_server/persistent_sockets/main/ |
D | main.c | 172 if (httpd_start(&server, &config) == ESP_OK) { in start_webserver()
|
/hal_espressif-2.7.6/components/esp_https_server/src/ |
D | https_server.c | 246 esp_err_t ret = httpd_start(&handle, &config->httpd); in httpd_ssl_start()
|
/hal_espressif-2.7.6/examples/protocols/http_server/restful_server/main/ |
D | rest_server.c | 182 REST_CHECK(httpd_start(&server, &config) == ESP_OK, "Start server failed", err_start); in start_rest_server()
|
/hal_espressif-2.7.6/examples/protocols/http_server/simple/main/ |
D | main.c | 230 if (httpd_start(&server, &config) == ESP_OK) { in start_webserver()
|
/hal_espressif-2.7.6/components/protocomm/src/transports/ |
D | protocomm_httpd.c | 288 if ((err = httpd_start((httpd_handle_t *)pc->priv, &server_config)) != ESP_OK) { in protocomm_httpd_start()
|
/hal_espressif-2.7.6/components/esp_http_server/include/ |
D | esp_http_server.h | 282 esp_err_t httpd_start(httpd_handle_t *handle, const httpd_config_t *config);
|
/hal_espressif-2.7.6/examples/protocols/http_server/advanced_tests/main/ |
D | tests.c | 378 if (httpd_start(&hd, &config) == ESP_OK) { in test_httpd_start()
|
/hal_espressif-2.7.6/examples/protocols/http_server/file_serving/main/ |
D | file_server.c | 479 if (httpd_start(&server, &config) != ESP_OK) { in start_file_server()
|
/hal_espressif-2.7.6/components/esp_http_server/src/ |
D | httpd_main.c | 391 esp_err_t httpd_start(httpd_handle_t *handle, const httpd_config_t *config) in httpd_start() function
|