# HG changeset patch # User William Ehlhardt # Date 1179982605 0 # Node ID a7887e79b723bab9a187892b559123b724363624 # Parent 4248f884451fdb45174044118338beed2cfadfbd Partial documentation on SslConnection struct diff -r 4248f884451f -r a7887e79b723 libpurple/sslconn.h --- a/libpurple/sslconn.h Thu May 24 04:43:39 2007 +0000 +++ b/libpurple/sslconn.h Thu May 24 04:56:45 2007 +0000 @@ -44,7 +44,9 @@ struct _PurpleSslConnection { + /** Hostname to which the SSL connection will be made */ char *host; + /** Port to connect to */ int port; void *connect_cb_data; PurpleSslInputFunction connect_cb; @@ -52,10 +54,12 @@ void *recv_cb_data; PurpleSslInputFunction recv_cb; + /** File descriptor used to refer to the socket */ int fd; int inpa; PurpleProxyConnectData *connect_data; + /** Internal connection data managed by the SSL backend (GnuTLS/LibNSS/whatever) */ void *private_data; };