aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/ssl_client.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2006-06-21 18:34:33 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2006-06-21 18:34:33 +0200
commitb72caac09b5944ee9954eb18262fe45228665570 (patch)
treeb44353f8ab3d23702f49e129d53b787952fe6546 /protocols/ssl_client.h
parent3af70b06b2f0fb0fb41a041f6d86e3711b9eea3f (diff)
parentdf417ca6657bc824e1dbd4a6026284656a42ce40 (diff)
Merging libevent branch: Events can now be handles by both glib and libevent.
Diffstat (limited to 'protocols/ssl_client.h')
-rw-r--r--protocols/ssl_client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/ssl_client.h b/protocols/ssl_client.h
index 89189db9..1a9c79e9 100644
--- a/protocols/ssl_client.h
+++ b/protocols/ssl_client.h
@@ -32,11 +32,11 @@
extern int ssl_errno;
-typedef void (*ssl_input_function)(gpointer, void*, GaimInputCondition);
+typedef gboolean (*ssl_input_function)(gpointer, void*, b_input_condition);
G_MODULE_EXPORT void *ssl_connect( char *host, int port, ssl_input_function func, gpointer data );
G_MODULE_EXPORT int ssl_read( void *conn, char *buf, int len );
G_MODULE_EXPORT int ssl_write( void *conn, const char *buf, int len );
G_MODULE_EXPORT void ssl_disconnect( void *conn_ );
G_MODULE_EXPORT int ssl_getfd( void *conn );
-G_MODULE_EXPORT GaimInputCondition ssl_getdirection( void *conn );
+G_MODULE_EXPORT b_input_condition ssl_getdirection( void *conn );