Lines Matching refs:connection

33  *   httpClose()          - Close an HTTP connection...
47 * httpFlush() - Flush data from a HTTP connection.
48 * httpRead() - Read data from a HTTP connection.
50 * httpWait() - Wait for data available on a connection.
51 * httpWrite() - Write data to a HTTP connection.
52 * httpGets() - Get a line of text from a HTTP connection.
53 * httpPrintf() - Print a formatted string to a HTTP connection.
66 * http_wait() - Wait for data available on a connection.
68 * http_setup_ssl() - Set up SSL/TLS on a connection.
69 * http_shutdown_ssl() - Shut down SSL/TLS on a connection.
70 * http_read_ssl() - Read from a SSL/TLS connection.
71 * http_write_ssl() - Write to a SSL/TLS connection.
127 static OSStatus CDSAReadFunc(SSLConnectionRef connection, void *data, size_t *dataLength);
128 static OSStatus CDSAWriteFunc(SSLConnectionRef connection, const void *data, size_t *dataLength);
294 httpCheck(http_t *http) /* I - HTTP connection */
319 * 'httpClose()' - Close an HTTP connection...
355 http_t * /* O - New HTTP connection */
379 http_t * /* O - New HTTP connection */
386 http_t *http; /* New HTTP connection */
887 * 'httpFlush()' - Flush data from a HTTP connection.
903 * 'httpRead()' - Read data from a HTTP connection.
1126 * 'httpWait()' - Wait for data available on a connection.
1144 * If not, check the SSL/TLS buffers and do a select() on the connection...
1152 * 'httpWrite()' - Write data to a HTTP connection.
1273 * 'httpGets()' - Get a line of text from a HTTP connection.
1425 * 'httpPrintf()' - Print a formatted string to a HTTP connection.
1554 char line[1024], /* Line from connection... */
1571 * Grab all of the lines we can from the connection...
1943 * If there is no content-length then the connection must close
2090 * 'http_wait()' - Wait for data available on a connection.
2193 static int /* O - Status of connection */
2221 * Wait for the secure connection...
2280 * 'http_setup_ssl()' - Set up SSL/TLS support on a connection.
2283 static int /* O - Status of connection */
2408 * 'http_shutdown_ssl()' - Shut down SSL/TLS on a connection.
2451 * 'http_read_ssl()' - Read from a SSL/TLS connection.
2485 * 'http_write_ssl()' - Write to a SSL/TLS connection.
2522 CDSAReadFunc(SSLConnectionRef connection, /* I - SSL/TLS connection */
2531 bytes = recv((int)connection, data, *dataLength, 0);
2547 CDSAWriteFunc(SSLConnectionRef connection, /* I - SSL/TLS connection */
2554 bytes = write((int)connection, data, *dataLength);