aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/ssl_client.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2005-12-17 13:14:15 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2005-12-17 13:14:15 +0100
commit3d64e5bbdcca4df5a3d4aa79041d0b54f68f599f (patch)
tree126ce2a4035e37dfc5aa976f6209075eae40ac93 /protocols/ssl_client.h
parent12c6634050984e3a7da472b603ddb63e7c7500c8 (diff)
Camel case, yuck!
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 719cd0c4..58c379c9 100644
--- a/protocols/ssl_client.h
+++ b/protocols/ssl_client.h
@@ -32,9 +32,9 @@
extern int ssl_errno;
-typedef void (*SslInputFunction)(gpointer, void*, GaimInputCondition);
+typedef void (*ssl_input_function)(gpointer, void*, GaimInputCondition);
-G_MODULE_EXPORT void *ssl_connect( char *host, int port, SslInputFunction func, gpointer data );
+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_ );