comparison libpurple/sslconn.h @ 32687:02a2e8183b1d

Clean the API documentation in preparation for 3.0.0 by removing all the old @since tags.
author andrew.victor@mxit.com
date Sun, 25 Sep 2011 18:56:58 +0000
parents d337a23e5536
children
comparison
equal deleted inserted replaced
32685:9d5b87e1a4d0 32687:02a2e8183b1d
201 * destroyed for you. 201 * destroyed for you.
202 * @param ssl_host The hostname of the other peer (to verify the CN) 202 * @param ssl_host The hostname of the other peer (to verify the CN)
203 * @param data User-defined data. 203 * @param data User-defined data.
204 * 204 *
205 * @return The SSL connection handle. 205 * @return The SSL connection handle.
206 * @since 2.6.0
207 */ 206 */
208 PurpleSslConnection *purple_ssl_connect_with_ssl_cn(PurpleAccount *account, const char *host, 207 PurpleSslConnection *purple_ssl_connect_with_ssl_cn(PurpleAccount *account, const char *host,
209 int port, PurpleSslInputFunction func, 208 int port, PurpleSslInputFunction func,
210 PurpleSslErrorFunction error_func, 209 PurpleSslErrorFunction error_func,
211 const char *ssl_host, 210 const char *ssl_host,
220 * @param error_func The SSL error handler function. 219 * @param error_func The SSL error handler function.
221 * @param host The hostname of the other peer (to verify the CN) 220 * @param host The hostname of the other peer (to verify the CN)
222 * @param data User-defined data. 221 * @param data User-defined data.
223 * 222 *
224 * @return The SSL connection handle. 223 * @return The SSL connection handle.
225 *
226 * @since 2.2.0
227 */ 224 */
228 PurpleSslConnection *purple_ssl_connect_with_host_fd(PurpleAccount *account, int fd, 225 PurpleSslConnection *purple_ssl_connect_with_host_fd(PurpleAccount *account, int fd,
229 PurpleSslInputFunction func, 226 PurpleSslInputFunction func,
230 PurpleSslErrorFunction error_func, 227 PurpleSslErrorFunction error_func,
231 const char *host, 228 const char *host,
276 * 273 *
277 * @param gsc The SSL connection handle 274 * @param gsc The SSL connection handle
278 * 275 *
279 * @return The peer certificate chain, in the order of certificate, issuer, 276 * @return The peer certificate chain, in the order of certificate, issuer,
280 * issuer's issuer, etc. @a NULL if no certificates have been provided, 277 * issuer's issuer, etc. @a NULL if no certificates have been provided,
281 *
282 * @since 2.2.0
283 */ 278 */
284 GList * purple_ssl_get_peer_certificates(PurpleSslConnection *gsc); 279 GList * purple_ssl_get_peer_certificates(PurpleSslConnection *gsc);
285 280
286 /*@}*/ 281 /*@}*/
287 282