1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-20 13:16:53 +00:00

(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

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;