Searched refs:rx_hdrs (Results 1 – 1 of 1) sorted by relevance
/third_party/lwip/src/apps/http/ |
D | http_client.c | 140 struct pbuf *rx_hdrs; member 165 if (req->rx_hdrs != NULL) { in httpc_free_state() 166 pbuf_free(req->rx_hdrs); in httpc_free_state() 167 req->rx_hdrs = NULL; in httpc_free_state() 301 if (req->rx_hdrs == NULL) { in httpc_tcp_recv() 302 req->rx_hdrs = p; in httpc_tcp_recv() 304 pbuf_cat(req->rx_hdrs, p); in httpc_tcp_recv() 308 …err_t err = http_parse_response_status(req->rx_hdrs, &req->rx_http_version, &req->rx_status, &stat… in httpc_tcp_recv() 316 err_t err = http_wait_headers(req->rx_hdrs, &req->hdr_content_len, &total_header_len); in httpc_tcp_recv() 323 …err = req->conn_settings->headers_done_fn(req, req->callback_arg, req->rx_hdrs, total_header_len, … in httpc_tcp_recv() [all …]
|