Home
last modified time | relevance | path

Searched refs:send_fn (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.5.0/components/esp_http_server/src/
Dhttpd_txrx.c23 sess->send_fn = send_func; in httpd_sess_set_send_override()
58 int ret = ra->sd->send_fn(ra->sd->handle, ra->sd->fd, buf, buf_len, 0); in httpd_send()
72 ret = ra->sd->send_fn(ra->sd->handle, ra->sd->fd, buf, buf_len, 0); in httpd_send_all()
609 if (!sess->send_fn) { in httpd_socket_send()
612 return sess->send_fn(hd, sockfd, buf, buf_len, flags); in httpd_socket_send()
Dhttpd_ws.c419 if (sess->send_fn(hd, fd, (const char *)header_buf, tx_len, 0) < 0) { in httpd_ws_send_frame_async()
426 if (sess->send_fn(hd, fd, (const char *)frame->payload, frame->len, 0) < 0) { in httpd_ws_send_frame_async()
Desp_httpd_priv.h60 httpd_send_func_t send_fn; /*!< Send function for this socket */ member
Dhttpd_sess.c204 session->send_fn = httpd_default_send; in httpd_sess_new()