Home | History | Annotate | Download | only in microhttpd

Lines Matching refs:connection

21  * @file connection.h
34 * Set callbacks for this connection to those for HTTP.
36 * @param connection connection to initialize
39 MHD_set_http_callbacks_ (struct MHD_Connection *connection);
43 * This function handles a particular connection when it has been
48 * @param connection connection to handle
50 * connection)
53 MHD_connection_handle_read (struct MHD_Connection *connection);
62 * @param connection connection to handle
64 * connection)
67 MHD_connection_handle_write (struct MHD_Connection *connection);
71 * This function was created to handle per-connection processing that
76 * @param connection connection to handle
78 * connection (not dead yet), MHD_NO if it died
81 MHD_connection_handle_idle (struct MHD_Connection *connection);
85 * Close the given connection and give the
88 * @param connection connection to close
92 MHD_connection_close (struct MHD_Connection *connection,
98 * Perform epoll processing, possibly moving the connection back into
101 * @param connection connection to process
103 * connection (not dead yet), MHD_NO if it died
106 MHD_connection_epoll_update_ (struct MHD_Connection *connection);