mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 06:54:15 +00:00
change order of initialization
This commit is contained in:
parent
8b7b6cfbc5
commit
ae5cea7f36
19
Daemon.cpp
19
Daemon.cpp
@ -130,13 +130,9 @@ namespace i2p
|
|||||||
ipv4 = false;
|
ipv4 = false;
|
||||||
ipv6 = true;
|
ipv6 = true;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
uint16_t port; i2p::config::GetOption("port", port);
|
i2p::context.SetSupportsV6 (ipv6);
|
||||||
if (!i2p::config::IsDefault("port"))
|
i2p::context.SetSupportsV4 (ipv4);
|
||||||
{
|
|
||||||
LogPrint(eLogInfo, "Daemon: accepting incoming connections at port ", port);
|
|
||||||
i2p::context.UpdatePort (port);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool nat; i2p::config::GetOption("nat", nat);
|
bool nat; i2p::config::GetOption("nat", nat);
|
||||||
if (nat)
|
if (nat)
|
||||||
@ -163,6 +159,15 @@ namespace i2p
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
uint16_t port; i2p::config::GetOption("port", port);
|
||||||
|
if (!i2p::config::IsDefault("port"))
|
||||||
|
{
|
||||||
|
LogPrint(eLogInfo, "Daemon: accepting incoming connections at port ", port);
|
||||||
|
i2p::context.UpdatePort (port);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
bool transit; i2p::config::GetOption("notransit", transit);
|
bool transit; i2p::config::GetOption("notransit", transit);
|
||||||
i2p::context.SetSupportsV6 (ipv6);
|
i2p::context.SetSupportsV6 (ipv6);
|
||||||
i2p::context.SetSupportsV4 (ipv4);
|
i2p::context.SetSupportsV4 (ipv4);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user