(trunk libT) fix minor bug in r9651 "Reduce SO_RCVBUF for outgoing peer connections on seeding torrents" -- remember the "isSeed" attribute so that we can use it on reconnects

This commit is contained in:
Charles Kerr 2009-12-28 23:24:00 +00:00
parent ac202f13bb
commit 196666da72
1 changed files with 1 additions and 0 deletions

View File

@ -384,6 +384,7 @@ tr_peerIoNew( tr_session * session,
io->crypto = tr_cryptoNew( torrentHash, isIncoming );
io->session = session;
io->addr = *addr;
io->isSeed = isSeed;
io->port = port;
io->socket = socket;
io->isIncoming = isIncoming != 0;