mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
handle commands with params
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user