comparison libpurple/sslconn.h @ 17560:f41a561e3b7b

New API name change, per request of Sean.
author Andreas Monitzer <pidgin@monitzer.com>
date Tue, 05 Jun 2007 16:31:20 +0000
parents 988102692e39
children 1d2002a5735e 1e1bed59a86f
comparison
equal deleted inserted replaced
17559:2e93ee8d3083 17560:f41a561e3b7b
152 PurpleSslErrorFunction error_func, 152 PurpleSslErrorFunction error_func,
153 void *data); 153 void *data);
154 154
155 /** 155 /**
156 * Makes a SSL connection using an already open file descriptor. 156 * Makes a SSL connection using an already open file descriptor.
157 * DEPRECATED. Use purple_ssl_connect_with_host_fd instead. 157 * @deprecated Use purple_ssl_connect_fd_with_host instead.
158 * 158 *
159 * @param account The account making the connection. 159 * @param account The account making the connection.
160 * @param fd The file descriptor. 160 * @param fd The file descriptor.
161 * @param func The SSL input handler function. 161 * @param func The SSL input handler function.
162 * @param error_func The SSL error handler function. 162 * @param error_func The SSL error handler function.
179 * @param host The hostname of the other peer (to verify the CN) 179 * @param host The hostname of the other peer (to verify the CN)
180 * @param data User-defined data. 180 * @param data User-defined data.
181 * 181 *
182 * @return The SSL connection handle. 182 * @return The SSL connection handle.
183 */ 183 */
184 PurpleSslConnection *purple_ssl_connect_with_host_fd(PurpleAccount *account, int fd, 184 PurpleSslConnection *purple_ssl_connect_fd_with_host(PurpleAccount *account, int fd,
185 PurpleSslInputFunction func, 185 PurpleSslInputFunction func,
186 PurpleSslErrorFunction error_func, 186 PurpleSslErrorFunction error_func,
187 const char *host, 187 const char *host,
188 void *data); 188 void *data);
189 189