mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-23 17:36:37 +02:00
handle commands with params
This commit is contained in:
parent
8feabe8a6e
commit
7954c5e5a0
1 changed files with 6 additions and 4 deletions
|
@ -640,13 +640,15 @@ namespace util
|
||||||
|
|
||||||
void HTTPConnection::HandleCommand (const std::string& command, std::stringstream& s)
|
void HTTPConnection::HandleCommand (const std::string& command, std::stringstream& s)
|
||||||
{
|
{
|
||||||
if (command == HTTP_COMMAND_TRANSPORTS)
|
size_t paramsPos = command.find('&');
|
||||||
|
std::string cmd = command.substr (0, paramsPos);
|
||||||
|
if (cmd == HTTP_COMMAND_TRANSPORTS)
|
||||||
ShowTransports (s);
|
ShowTransports (s);
|
||||||
else if (command == HTTP_COMMAND_TUNNELS)
|
else if (cmd == HTTP_COMMAND_TUNNELS)
|
||||||
ShowTunnels (s);
|
ShowTunnels (s);
|
||||||
else if (command == HTTP_COMMAND_TRANSIT_TUNNELS)
|
else if (cmd == HTTP_COMMAND_TRANSIT_TUNNELS)
|
||||||
ShowTransitTunnels (s);
|
ShowTransitTunnels (s);
|
||||||
else if (command == HTTP_COMMAND_LOCAL_DESTINATIONS)
|
else if (cmd == HTTP_COMMAND_LOCAL_DESTINATIONS)
|
||||||
ShowLocalDestinations (s);
|
ShowLocalDestinations (s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue