/* */ #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, Peer* peer, TorrentDownloadEngine* e); ~PeerInitiateConnectionCommand(); }; #endif // _D_PEER_INITIATE_CONNECTION_H_