Lines Matching defs:connection

315 static void http_continue(void *connection);
356 /* add the connection to the list */
364 /* take the connection off the list */
404 /* send RST when killing a connection because of memory shortage */
580 when all data has been enqueued but the connection stays open for the next
589 * The connection shall be actively closed (using RST to close from fault states).
593 * @param hs connection state to free
599 LWIP_DEBUGF(HTTPD_DEBUG, ("Closing connection %p\n", (void *)pcb));
608 /* make sure the post code knows that the connection is closed */
639 * The connection shall be actively closed.
643 * @param hs connection state to free
651 /** End of file: either close the connection (Connection: close) or
657 /* HTTP/1.1 persistent connection? (Not supported for SSI) */
683 * @param hs http connection state
756 * @param hs http connection state
1006 /* set up "content-length" and "connection:" headers */
1105 /* No - close the connection. */
1507 * single tag insert buffer per connection. If we don't do
1572 * @param hs connection state
1642 /** Initialize a http connection with a file to send for an error message
1644 * @param hs http connection state
1736 * returning a response document or closing the connection.
1739 * @param hs http connection state
1758 /* prevent connection being closed if httpd_post_data_recved() is called nested */
1790 * @param hs The http connection state.
1901 * @param connection A connection handle passed to httpd_post_begin for which
1905 void httpd_post_data_recved(void *connection, u16_t recved_len)
1907 struct http_state *hs = (struct http_state *)connection;
1940 http_continue(void *connection)
1942 struct http_state *hs = (struct http_state *)connection;
1961 * @param hs the connection state
2079 /* This is HTTP/1.0 compatible: for strict 1.1, a connection
2185 * @param hs the connection state
2308 /** Initialize a http connection with a file to send (if found).
2311 * @param hs http connection state
2511 /* If this connection has a file open, try to send some more data. If
2513 * cause the connection to close immediately. */
2571 /* all data received, send response or close connection */
2614 * A new incoming connection has been accepted.
2632 connection - initialized by that function. */
2698 * Also set up TLS connection handling (HTTPS).