mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-27 11:17:49 +02:00
BOB 'clear' command
This commit is contained in:
parent
9a9d6e8e00
commit
8788e1b2fd
2 changed files with 11 additions and 2 deletions
7
BOB.cpp
7
BOB.cpp
|
@ -435,6 +435,12 @@ namespace client
|
|||
SendReplyOK (addr.ToBase64 ().c_str ());
|
||||
}
|
||||
|
||||
void BOBCommandSession::ClearCommandHandler (const char * operand, size_t len)
|
||||
{
|
||||
LogPrint (eLogDebug, "BOB: clear");
|
||||
// TODO
|
||||
SendReplyOK ("cleared");
|
||||
}
|
||||
|
||||
BOBCommandChannel::BOBCommandChannel (int port):
|
||||
m_IsRunning (false), m_Thread (nullptr),
|
||||
|
@ -457,6 +463,7 @@ namespace client
|
|||
m_CommandHandlers[BOB_COMMAND_INPORT] = &BOBCommandSession::InportCommandHandler;
|
||||
m_CommandHandlers[BOB_COMMAND_QUIET] = &BOBCommandSession::QuietCommandHandler;
|
||||
m_CommandHandlers[BOB_COMMAND_LOOKUP] = &BOBCommandSession::LookupCommandHandler;
|
||||
m_CommandHandlers[BOB_COMMAND_CLEAR] = &BOBCommandSession::ClearCommandHandler;
|
||||
}
|
||||
|
||||
BOBCommandChannel::~BOBCommandChannel ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue