Show
Ignore:
Timestamp:
05/05/08 15:16:26 (4 years ago)
Author:
rakshasa
Message:

* Initial seeding support added. Patch by Josef Drexler.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/libtorrent/src/protocol/peer_factory.cc

    r1043 r1058  
    5656} 
    5757 
     58PeerConnectionBase* 
     59createPeerConnectionInitialSeed(bool encrypted) { 
     60  PeerConnectionBase* pc = new PeerConnection<Download::CONNECTION_INITIAL_SEED>; 
     61 
     62  return pc; 
    5863} 
     64 
     65}