mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-16 00:12:43 +00:00
Merge pull request #45 from chertov/master
adding files to а VS project, showed external ip on statistics page
This commit is contained in:
commit
74815d7462
@ -118,6 +118,20 @@ namespace util
|
|||||||
|
|
||||||
void HTTPConnection::FillContent (std::stringstream& s)
|
void HTTPConnection::FillContent (std::stringstream& s)
|
||||||
{
|
{
|
||||||
|
s << "Our external address:" << "<BR>" << "<BR>";
|
||||||
|
for (auto& address : i2p::context.GetRouterInfo().GetAddresses())
|
||||||
|
{
|
||||||
|
switch (address.transportStyle) {
|
||||||
|
case i2p::data::RouterInfo::eTransportNTCP:
|
||||||
|
s << "NTCP ";
|
||||||
|
break;
|
||||||
|
case i2p::data::RouterInfo::eTransportSSU:
|
||||||
|
s << "SSU ";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
s << address.host.to_string() << ":" << address.port << "<BR>";
|
||||||
|
}
|
||||||
|
|
||||||
s << "<P>Tunnels</P>";
|
s << "<P>Tunnels</P>";
|
||||||
for (auto it: i2p::tunnel::tunnels.GetOutboundTunnels ())
|
for (auto it: i2p::tunnel::tunnels.GetOutboundTunnels ())
|
||||||
{
|
{
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
<ClCompile Include="..\Tunnel.cpp" />
|
<ClCompile Include="..\Tunnel.cpp" />
|
||||||
<ClCompile Include="..\TunnelEndpoint.cpp" />
|
<ClCompile Include="..\TunnelEndpoint.cpp" />
|
||||||
<ClCompile Include="..\TunnelGateway.cpp" />
|
<ClCompile Include="..\TunnelGateway.cpp" />
|
||||||
|
<ClCompile Include="..\UPnP.cpp" />
|
||||||
<ClCompile Include="..\util.cpp" />
|
<ClCompile Include="..\util.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@ -62,6 +63,7 @@
|
|||||||
<ClInclude Include="..\TunnelConfig.h" />
|
<ClInclude Include="..\TunnelConfig.h" />
|
||||||
<ClInclude Include="..\TunnelEndpoint.h" />
|
<ClInclude Include="..\TunnelEndpoint.h" />
|
||||||
<ClInclude Include="..\TunnelGateway.h" />
|
<ClInclude Include="..\TunnelGateway.h" />
|
||||||
|
<ClInclude Include="..\UPnP.h" />
|
||||||
<ClInclude Include="..\util.h" />
|
<ClInclude Include="..\util.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
|
@ -81,6 +81,9 @@
|
|||||||
<ClCompile Include="..\Reseed.cpp">
|
<ClCompile Include="..\Reseed.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\UPnP.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="..\Identity.h">
|
<ClInclude Include="..\Identity.h">
|
||||||
@ -167,5 +170,8 @@
|
|||||||
<ClInclude Include="..\Reseed.h">
|
<ClInclude Include="..\Reseed.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\UPnP.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
Loading…
Reference in New Issue
Block a user