From: <the...@us...> - 2006-08-11 08:01:18
|
Revision: 16704 Author: thekingant Date: 2006-08-11 01:01:16 -0700 (Fri, 11 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16704&view=rev Log Message: ----------- #if 0 some of the MSN listen-for-connection code for file transfers. It wasn't being used Modified Paths: -------------- trunk/src/protocols/msn/directconn.c trunk/src/protocols/msn/directconn.h Modified: trunk/src/protocols/msn/directconn.c =================================================================== --- trunk/src/protocols/msn/directconn.c 2006-08-11 07:15:39 UTC (rev 16703) +++ trunk/src/protocols/msn/directconn.c 2006-08-11 08:01:16 UTC (rev 16704) @@ -76,6 +76,7 @@ * Connection Functions **************************************************************************/ +#if 0 static int create_listener(int port) { @@ -159,6 +160,7 @@ return fd; } +#endif static size_t msn_directconn_write(MsnDirectConn *directconn, @@ -447,6 +449,7 @@ return FALSE; } +#if 0 void msn_directconn_listen(MsnDirectConn *directconn) { @@ -466,6 +469,7 @@ directconn->port = port; directconn->c = 0; } +#endif MsnDirectConn* msn_directconn_new(MsnSlpLink *slplink) Modified: trunk/src/protocols/msn/directconn.h =================================================================== --- trunk/src/protocols/msn/directconn.h 2006-08-11 07:15:39 UTC (rev 16703) +++ trunk/src/protocols/msn/directconn.h 2006-08-11 08:01:16 UTC (rev 16704) @@ -50,7 +50,9 @@ MsnDirectConn *msn_directconn_new(MsnSlpLink *slplink); gboolean msn_directconn_connect(MsnDirectConn *directconn, const char *host, int port); +#if 0 void msn_directconn_listen(MsnDirectConn *directconn); +#endif void msn_directconn_send_msg(MsnDirectConn *directconn, MsnMessage *msg); void msn_directconn_parse_nonce(MsnDirectConn *directconn, const char *nonce); void msn_directconn_destroy(MsnDirectConn *directconn); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |