Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/ssl_client.h

    rba5add7 r8a2221a7  
    4747
    4848
    49 /* Perform any global initialization the SSL library might need. */
    50 G_MODULE_EXPORT void ssl_init( void );
    51 
    5249/* Connect to host:port, call the given function when the connection is
    5350   ready to be used for SSL traffic. This is all done asynchronously, no
     
    6259G_MODULE_EXPORT int ssl_read( void *conn, char *buf, int len );
    6360G_MODULE_EXPORT int ssl_write( void *conn, const char *buf, int len );
     61
     62/* See ssl_openssl.c for an explanation. */
     63G_MODULE_EXPORT int ssl_pending( void *conn );
    6464
    6565/* Abort the SSL connection and disconnect the socket. Do not use close()
Note: See TracChangeset for help on using the changeset viewer.