Changeset 3935
- Timestamp:
- Nov 23, 2007, 2:49:06 AM (15 years ago)
- Location:
- trunk/libtransmission
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/peer-mgr-private.h
r3864 r3935 41 41 * Use SWIFT? 42 42 */ 43 static const int SWIFT_ENABLED = 1;43 static const int SWIFT_ENABLED = 0; 44 44 45 45 /** -
trunk/libtransmission/tracker.c
r3826 r3935 150 150 ***/ 151 151 152 #if 0 152 153 static int 153 154 freeConnection( void * evcon ) … … 165 166 tr_timerNew( handle, freeConnection, evcon, 100 ); 166 167 } 168 #endif 167 169 168 170 static struct evhttp_connection* … … 170 172 { 171 173 struct evhttp_connection * c = evhttp_connection_new( address, port ); 172 evhttp_connection_set_closecb( c, connectionClosedCB, t->handle );174 //evhttp_connection_set_closecb( c, connectionClosedCB, t->handle ); 173 175 return c; 174 176 } … … 1014 1016 tr_trackerStop( tr_tracker * t ) 1015 1017 { 1018 dbgmsg( t, " tr_trackerStop called .... t->isRunning is %d", (int)t->isRunning ); 1016 1019 if( t->isRunning ) 1017 1020 {
Note: See TracChangeset
for help on using the changeset viewer.