Searched refs:send_fn (Results 1 – 4 of 4) sorted by relevance
/hal_espressif-3.5.0/components/esp_http_server/src/ |
D | httpd_txrx.c | 23 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()
|
D | httpd_ws.c | 419 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()
|
D | esp_httpd_priv.h | 60 httpd_send_func_t send_fn; /*!< Send function for this socket */ member
|
D | httpd_sess.c | 204 session->send_fn = httpd_default_send; in httpd_sess_new()
|