mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-22 00:59:08 +01:00
* HTTPServer.cpp: add space after "Queue size:"
This commit is contained in:
parent
c312dbaac1
commit
02b566055e
1 changed files with 1 additions and 1 deletions
|
@ -580,7 +580,7 @@ namespace util
|
||||||
void HTTPConnection::ShowTunnels (std::stringstream& s)
|
void HTTPConnection::ShowTunnels (std::stringstream& s)
|
||||||
{
|
{
|
||||||
s << "<b>Tunnels:</b><br>\r\n<br>\r\n";
|
s << "<b>Tunnels:</b><br>\r\n<br>\r\n";
|
||||||
s << "<b>Queue size:</b>" << i2p::tunnel::tunnels.GetQueueSize () << "<br>\r\n";
|
s << "<b>Queue size:</b> " << i2p::tunnel::tunnels.GetQueueSize () << "<br>\r\n";
|
||||||
for (auto it: i2p::tunnel::tunnels.GetOutboundTunnels ())
|
for (auto it: i2p::tunnel::tunnels.GetOutboundTunnels ())
|
||||||
{
|
{
|
||||||
it->Print (s);
|
it->Print (s);
|
||||||
|
|
Loading…
Add table
Reference in a new issue