libpurple/plugins/perl/common/SSLConn.xs

Thu, 30 Oct 2008 22:40:49 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Thu, 30 Oct 2008 22:40:49 +0000
changeset 24569
5dbd0617a27d
parent 23983
586866581434
child 32438
dc8991868906
permissions
-rw-r--r--

Build everything with the *_DISABLE_DEPRECATED flags set. This allows us
to detect when we're still using deprecated functions internally (and by
extension, when we've deprecated something we shouldn't have). In the
course of developing this changeset, I fixed a few such cases.

Given that the plan is to switch from PURPLE_HIDE_STRUCTS to
PURPLE_DISABLE_DEPRECATED as each struct is fully dealt with, this will
also ensure we have no regressions on the struct hiding work.

Deprecated functions are still available to the respective .c file, to
avoid missing prototype errors. Also, Perl and DBus undef the
*_DISABLE_DEPRECATED defines as appropriate so that deprecated functions
will still be exported to Perl plugins and via DBus. (Otherwise, we'd
be breaking backwards compatibility.)

#include "module.h"

/* TODO


Purple::Ssl::Connection
purple_ssl_connect(account, host, port, func, error_func, data)
	Purple::Account account
	const char *host
	int port
	PurpleSslInputFunction func
	PurpleSslErrorFunction error_func

void
purple_ssl_input_add(gsc, func, data)
	Purple::Ssl::Connection gsc
	Purple::SslInputFunction func

Purple::Ssl::Connection
purple_ssl_connect_fd(account, fd, func, error_func, data)
	Purple::Account account
	int fd
	PurpleSslInputFunction func
	PurpleSslErrorFunction error_func

*/

MODULE = Purple::SSL  PACKAGE = Purple::SSL   PREFIX = purple_ssl_
PROTOTYPES: ENABLE

void
purple_ssl_close(gsc)
	Purple::Ssl::Connection gsc

Purple::Ssl::Ops
purple_ssl_get_ops()

gboolean
purple_ssl_is_supported()

size_t
purple_ssl_read(gsc, buffer, len)
	Purple::Ssl::Connection gsc
	void * buffer
	size_t len

void
purple_ssl_set_ops(ops)
	Purple::Ssl::Ops ops

size_t
purple_ssl_write(gsc, buffer, len)
	Purple::Ssl::Connection gsc
	void * buffer
	size_t len

mercurial