mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 21:37:17 +01:00
handle 'reservedrange' param properly
This commit is contained in:
parent
ca9782dd0d
commit
34d75b08dd
|
@ -160,6 +160,10 @@ namespace util
|
||||||
|
|
||||||
int netID; i2p::config::GetOption("netid", netID);
|
int netID; i2p::config::GetOption("netid", netID);
|
||||||
i2p::context.SetNetID (netID);
|
i2p::context.SetNetID (netID);
|
||||||
|
|
||||||
|
bool checkReserved; i2p::config::GetOption("reservedrange", checkReserved);
|
||||||
|
i2p::transport::transports.SetCheckReserved(checkReserved);
|
||||||
|
|
||||||
i2p::context.Init ();
|
i2p::context.Init ();
|
||||||
|
|
||||||
i2p::transport::InitTransports ();
|
i2p::transport::InitTransports ();
|
||||||
|
|
|
@ -1200,9 +1200,6 @@ namespace transport
|
||||||
else
|
else
|
||||||
i2p::context.PublishSSU2Address (ssu2port, false, ipv4, ipv6); // unpublish
|
i2p::context.PublishSSU2Address (ssu2port, false, ipv4, ipv6); // unpublish
|
||||||
}
|
}
|
||||||
|
|
||||||
bool checkReserved; i2p::config::GetOption("reservedrange", checkReserved);
|
|
||||||
transports.SetCheckReserved (checkReserved);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2013-2023, The PurpleI2P Project
|
* Copyright (c) 2013-2024, The PurpleI2P Project
|
||||||
*
|
*
|
||||||
* This file is part of Purple i2pd project and licensed under BSD3
|
* This file is part of Purple i2pd project and licensed under BSD3
|
||||||
*
|
*
|
||||||
|
@ -44,6 +44,9 @@ namespace api
|
||||||
int netID; i2p::config::GetOption("netid", netID);
|
int netID; i2p::config::GetOption("netid", netID);
|
||||||
i2p::context.SetNetID (netID);
|
i2p::context.SetNetID (netID);
|
||||||
|
|
||||||
|
bool checkReserved; i2p::config::GetOption("reservedrange", checkReserved);
|
||||||
|
i2p::transport::transports.SetCheckReserved(checkReserved);
|
||||||
|
|
||||||
i2p::context.Init ();
|
i2p::context.Init ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue