comparison libpurple/sslconn.c @ 32672:3828a61c44da

A boring and large patch so I can merge heads.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Fri, 23 Dec 2011 08:21:58 +0000
parents bff61dad9a6b
children
comparison
equal deleted inserted replaced
32671:0e69949b3e61 32672:3828a61c44da
183 return _("Unknown SSL error"); 183 return _("Unknown SSL error");
184 } 184 }
185 } 185 }
186 186
187 PurpleSslConnection * 187 PurpleSslConnection *
188 purple_ssl_connect_fd(PurpleAccount *account, int fd,
189 PurpleSslInputFunction func,
190 PurpleSslErrorFunction error_func,
191 void *data)
192 {
193 return purple_ssl_connect_with_host_fd(account, fd, func, error_func, NULL, data);
194 }
195
196 PurpleSslConnection *
197 purple_ssl_connect_with_host_fd(PurpleAccount *account, int fd, 188 purple_ssl_connect_with_host_fd(PurpleAccount *account, int fd,
198 PurpleSslInputFunction func, 189 PurpleSslInputFunction func,
199 PurpleSslErrorFunction error_func, 190 PurpleSslErrorFunction error_func,
200 const char *host, 191 const char *host,
201 void *data) 192 void *data)