From: <the...@us...> - 2006-08-18 05:58:27
|
Revision: 16829 Author: thekingant Date: 2006-08-17 22:58:17 -0700 (Thu, 17 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16829&view=rev Log Message: ----------- Just rename connect to connectfunc. This is what it was like before my changes. Now I know why! Modified Paths: -------------- trunk/src/sslconn.c trunk/src/sslconn.h Modified: trunk/src/sslconn.c =================================================================== --- trunk/src/sslconn.c 2006-08-18 05:56:10 UTC (rev 16828) +++ trunk/src/sslconn.c 2006-08-18 05:58:17 UTC (rev 16829) @@ -46,7 +46,7 @@ ops = gaim_ssl_get_ops(); if ((ops == NULL) || (ops->init == NULL) || (ops->uninit == NULL) || - (ops->connect == NULL) || (ops->close == NULL) || + (ops->connectfunc == NULL) || (ops->close == NULL) || (ops->read == NULL) || (ops->write == NULL)) { return FALSE; @@ -87,7 +87,7 @@ gsc->fd = source; ops = gaim_ssl_get_ops(); - (ops->connect)(gsc); + ops->connectfunc(gsc); } GaimSslConnection * @@ -177,7 +177,7 @@ gsc->fd = fd; ops = gaim_ssl_get_ops(); - (ops->connect)(gsc); + ops->connectfunc(gsc); return (GaimSslConnection *)gsc; } Modified: trunk/src/sslconn.h =================================================================== --- trunk/src/sslconn.h 2006-08-18 05:56:10 UTC (rev 16828) +++ trunk/src/sslconn.h 2006-08-18 05:58:17 UTC (rev 16829) @@ -68,7 +68,7 @@ { gboolean (*init)(void); void (*uninit)(void); - void (*connect)(GaimSslConnection *gsc); + void (*connectfunc)(GaimSslConnection *gsc); void (*close)(GaimSslConnection *gsc); size_t (*read)(GaimSslConnection *gsc, void *data, size_t len); size_t (*write)(GaimSslConnection *gsc, const void *data, size_t len); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |