view plugins/perl/common/SSLConn.xs @ 13589:6ea890a0dd1e

[gaim-migrate @ 15975] I'm not really sure what this file is for exactly but it likely wants Debug.xs and Signal.xs. I also moved some of the lines around so that this file matches the order of the files in the Makefile, since that's what I was comparing this list against. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Fri, 07 Apr 2006 00:16:30 +0000
parents 96f9b4798012
children
line wrap: on
line source

#include "module.h"

/* TODO


Gaim::Ssl::Connection
gaim_ssl_connect(account, host, port, func, error_func, data)
	Gaim::Account account
	const char *host
	int port
	GaimSslInputFunction func
	GaimSslErrorFunction error_func

void
gaim_ssl_input_add(gsc, func, data)
	Gaim::Ssl::Connection gsc
	Gaim::SslInputFunction func

Gaim::Ssl::Connection
gaim_ssl_connect_fd(account, fd, func, error_func, data)
	Gaim::Account account
	int fd
	GaimSslInputFunction func
	GaimSslErrorFunction error_func

*/

MODULE = Gaim::SSL  PACKAGE = Gaim::SSL   PREFIX = gaim_ssl_
PROTOTYPES: ENABLE

void
gaim_ssl_close(gsc)
	Gaim::Ssl::Connection gsc

Gaim::Ssl::Ops
gaim_ssl_get_ops()

void
gaim_ssl_init()

gboolean
gaim_ssl_is_supported()

size_t
gaim_ssl_read(gsc, buffer, len)
	Gaim::Ssl::Connection gsc
	void * buffer
	size_t len

void
gaim_ssl_set_ops(ops)
	Gaim::Ssl::Ops ops

void
gaim_ssl_uninit()

size_t
gaim_ssl_write(gsc, buffer, len)
	Gaim::Ssl::Connection gsc
	void * buffer
	size_t len