Searched refs:httpd_data (Results 1 – 6 of 6) sorted by relevance
/hal_espressif-3.6.0/components/esp_http_server/src/ |
D | esp_httpd_priv.h | 106 struct httpd_data { struct 139 void httpd_sess_enum(struct httpd_data *hd, httpd_session_enum_function enum_function, void *contex… argument 150 struct sock_db *httpd_sess_get_free(struct httpd_data *hd); 159 struct sock_db *httpd_sess_get(struct httpd_data *hd, int sockfd); 167 void httpd_sess_delete_invalid(struct httpd_data *hd); 174 void httpd_sess_init(struct httpd_data *hd); 187 esp_err_t httpd_sess_new(struct httpd_data *hd, int newfd); 199 esp_err_t httpd_sess_process(struct httpd_data *hd, struct sock_db *session); 208 void httpd_sess_delete(struct httpd_data *hd, struct sock_db *session); 227 void httpd_sess_set_descriptors(struct httpd_data *hd, fd_set *fdset, int *maxfd); [all …]
|
D | httpd_sess.c | 35 struct httpd_data *hd; 40 void httpd_sess_enum(struct httpd_data *hd, httpd_session_enum_function enum_function, void *contex… in httpd_sess_enum() 144 struct httpd_data *hd = (struct httpd_data *) sock_db->handle; in httpd_sess_close() 148 struct sock_db *httpd_sess_get_free(struct httpd_data *hd) in httpd_sess_get_free() 160 bool httpd_is_sess_available(struct httpd_data *hd) in httpd_is_sess_available() 165 struct sock_db *httpd_sess_get(struct httpd_data *hd, int sockfd) in httpd_sess_get() 185 esp_err_t httpd_sess_new(struct httpd_data *hd, int newfd) in httpd_sess_new() 266 struct httpd_data *hd = (struct httpd_data *) handle; in httpd_sess_get_ctx() 283 struct httpd_data *hd = (struct httpd_data *) handle; in httpd_sess_set_ctx() 327 void httpd_sess_set_descriptors(struct httpd_data *hd, fd_set *fdset, int *maxfd) in httpd_sess_set_descriptors() [all …]
|
D | httpd_main.c | 21 struct httpd_data *hd; 26 static esp_err_t httpd_accept_conn(struct httpd_data *hd, int listen_fd) in httpd_accept_conn() 86 struct httpd_data *hd = (struct httpd_data *) handle; in httpd_queue_work() 104 struct httpd_data *hd = (struct httpd_data *) handle; in httpd_get_client_list() 124 return ((struct httpd_data *)handle)->config.global_user_ctx; in httpd_get_global_user_ctx() 129 return ((struct httpd_data *)handle)->config.global_transport_ctx; in httpd_get_global_transport_ctx() 133 static void httpd_process_ctrl_msg(struct httpd_data *hd) in httpd_process_ctrl_msg() 186 static esp_err_t httpd_server(struct httpd_data *hd) in httpd_server() 245 struct httpd_data *hd = (struct httpd_data *) arg; in httpd_thread() 265 static esp_err_t httpd_server_init(struct httpd_data *hd) in httpd_server_init() [all …]
|
D | httpd_uri.c | 85 static httpd_uri_t* httpd_find_uri_handler(struct httpd_data *hd, in httpd_find_uri_handler() 133 struct httpd_data *hd = (struct httpd_data *) handle; in httpd_register_uri_handler() 192 struct httpd_data *hd = (struct httpd_data *) handle; in httpd_unregister_uri_handler() 228 struct httpd_data *hd = (struct httpd_data *) handle; in httpd_unregister_uri() 262 void httpd_unregister_all_uri_handlers(struct httpd_data *hd) in httpd_unregister_all_uri_handlers() 276 esp_err_t httpd_uri(struct httpd_data *hd) in httpd_uri()
|
D | httpd_txrx.c | 173 struct httpd_data *hd = (struct httpd_data *) r->handle; in httpd_resp_set_hdr() 480 struct httpd_data *hd = (struct httpd_data *) handle; in httpd_register_err_handler() 487 struct httpd_data *hd = (struct httpd_data *) req->handle; in httpd_req_handle_err()
|
D | httpd_parse.c | 617 static esp_err_t httpd_parse_req(struct httpd_data *hd) in httpd_parse_req() 723 esp_err_t httpd_req_new(struct httpd_data *hd, struct sock_db *sd) in httpd_req_new() 790 esp_err_t httpd_req_delete(struct httpd_data *hd) in httpd_req_delete() 829 struct httpd_data *hd = (struct httpd_data *) r->handle; in httpd_validate_req_ptr()
|