/* */ #include "BtKeepAliveMessage.h" #include namespace aria2 { const char BtKeepAliveMessage::NAME[] = "keep alive"; std::vector BtKeepAliveMessage::createMessage() { /** * len --- 0, 4bytes * total: 4bytes */ return std::vector(MESSAGE_LENGTH); } } // namespace aria2