Changeset 4838
- Timestamp:
- Jan 26, 2008, 3:43:47 AM (15 years ago)
- Location:
- branches/1.0x
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0x/NEWS
r4835 r4838 4 4 - All Platforms: 5 5 + Fix handshake bug with peers that support LTEP 6 + Fix handshake bug with mainline BitTorrent 6 7 7 8 1.02 (2008/01/22) … … 9 10 + Fix 1.00 bug that choked some models of routers 10 11 + Fix 1.00 crash in peer handshake 11 + Fix 1.0 1bug that sometimes froze the app for a long time12 + Fix 1.00 bug that sometimes froze the app for a long time 12 13 + Minor improvements to the command-line client 13 14 - GTK+ -
branches/1.0x/libtransmission/peer-msgs.c
r4835 r4838 1892 1892 m->clientSuggestedPieces = tr_bitfieldNew( m->torrent->info.pieceCount ); 1893 1893 *setme = tr_publisherSubscribe( m->publisher, func, userData ); 1894 1895 tr_peerIoSetTimeoutSecs( m->io, 150 ); /* timeout after N seconds of inactivity */1896 tr_peerIoSetIOFuncs( m->io, canRead, didWrite, gotError, m );1897 ratePulse( m );1898 1894 1899 1895 if ( tr_peerIoSupportsLTEP( m->io ) ) 1900 1896 sendLtepHandshake( m ); 1901 1897 1898 /* bitfield/have-all/have-none must preceed other non-handshake messages... */ 1902 1899 if ( !tr_peerIoSupportsFEXT( m->io ) ) 1903 1900 sendBitfield( m ); … … 1913 1910 } 1914 1911 } 1912 1913 tr_peerIoSetTimeoutSecs( m->io, 150 ); /* timeout after N seconds of inactivity */ 1914 tr_peerIoSetIOFuncs( m->io, canRead, didWrite, gotError, m ); 1915 ratePulse( m ); 1915 1916 1916 1917 return m;
Note: See TracChangeset
for help on using the changeset viewer.