/* */ #ifndef _D_PEER_INITIATE_CONNECTION_H_ #define _D_PEER_INITIATE_CONNECTION_H_ #include "PeerAbstractCommand.h" class PeerInitiateConnectionCommand : public PeerAbstractCommand { protected: bool executeInternal(); bool prepareForRetry(int wait); bool prepareForNextPeer(int wait); public: PeerInitiateConnectionCommand(int cuid, const PeerHandle& peer, TorrentDownloadEngine* e, const BtContextHandle& btContext); ~PeerInitiateConnectionCommand(); }; #endif // _D_PEER_INITIATE_CONNECTION_H_