esp_http_server: Add linger in httpd_config_t

Closes: https://github.com/espressif/esp-idf/issues/9514
pull/9842/head
Harshit Malpani 2022-09-14 11:06:40 +05:30
rodzic 57562b3a55
commit a3fd6d1070
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: FF1193D150EF75C3
2 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -40,6 +40,8 @@ initializer that should be kept in sync
.global_user_ctx_free_fn = NULL, \
.global_transport_ctx = NULL, \
.global_transport_ctx_free_fn = NULL, \
.enable_so_linger = false, \
.linger_timeout = 0, \
.open_fn = NULL, \
.close_fn = NULL, \
.uri_match_fn = NULL \
@ -185,6 +187,9 @@ typedef struct httpd_config {
*/
httpd_free_ctx_fn_t global_transport_ctx_free_fn;
bool enable_so_linger; /*!< bool to enable/disable linger */
int linger_timeout; /*!< linger timeout (in seconds) */
/**
* Custom session opening callback.
*

Wyświetl plik

@ -354,6 +354,13 @@ void httpd_sess_delete(struct httpd_data *hd, struct sock_db *session)
}
ESP_LOGD(TAG, LOG_FMT("fd = %d"), session->fd);
if (hd->config.enable_so_linger) {
struct linger so_linger = {
.l_onoff = true,
.l_linger = hd->config.linger_timeout,
};
setsockopt(session->fd, SOL_SOCKET, SO_LINGER, &so_linger, sizeof(struct linger));
}
// Call close function if defined
if (hd->config.close_fn) {