| 88 * |
90 * |
| 89 * @return The SSL connection handle. |
91 * @return The SSL connection handle. |
| 90 */ |
92 */ |
| 91 GaimSslConnection *gaim_ssl_connect(GaimAccount *account, const char *host, |
93 GaimSslConnection *gaim_ssl_connect(GaimAccount *account, const char *host, |
| 92 int port, GaimSslInputFunction func, |
94 int port, GaimSslInputFunction func, |
| |
95 void *data); |
| |
96 |
| |
97 /** |
| |
98 * Adds an input watcher for the specified SSL connection. |
| |
99 * |
| |
100 * @param gsc The SSL connection handle. |
| |
101 * @param func The callback function. |
| |
102 * @param data User-defined data. |
| |
103 */ |
| |
104 void gaim_ssl_input_add(GaimSslConnection *gsc, GaimSslInputFunction func, |
| 93 void *data); |
105 void *data); |
| 94 |
106 |
| 95 /** |
107 /** |
| 96 * Makes a SSL connection using an already open file descriptor. |
108 * Makes a SSL connection using an already open file descriptor. |
| 97 * |
109 * |