/* */ #ifndef _D_BT_ALLOWED_FAST_MESSAGE_H_ #define _D_BT_ALLOWED_FAST_MESSAGE_H_ #include "IndexBtMessage.h" namespace aria2 { class BtAllowedFastMessage; typedef SharedHandle BtAllowedFastMessageHandle; class BtAllowedFastMessage : public IndexBtMessage { public: BtAllowedFastMessage(size_t index = 0); static const uint8_t ID = 17; static const std::string NAME; static SharedHandle create (const unsigned char* data, size_t dataLength); virtual void doReceivedAction(); virtual void onSendComplete(); }; } // namespace aria2 #endif // _D_BT_ALLOWED_FAST_MESSAGE_H_