mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
#510 - move m_Acceptor.reset under try
This commit is contained in:
parent
754299339d
commit
d49dde7c5e
1 changed files with 3 additions and 3 deletions
|
@ -282,10 +282,10 @@ namespace client
|
||||||
|
|
||||||
void TCPIPAcceptor::Start ()
|
void TCPIPAcceptor::Start ()
|
||||||
{
|
{
|
||||||
|
try {
|
||||||
m_Acceptor.reset (new boost::asio::ip::tcp::acceptor (GetService (), m_LocalEndpoint));
|
m_Acceptor.reset (new boost::asio::ip::tcp::acceptor (GetService (), m_LocalEndpoint));
|
||||||
// update the local end point in case port has been set zero and got updated now
|
// update the local end point in case port has been set zero and got updated now
|
||||||
m_LocalEndpoint = m_Acceptor->local_endpoint();
|
m_LocalEndpoint = m_Acceptor->local_endpoint();
|
||||||
try {
|
|
||||||
m_Acceptor->listen ();
|
m_Acceptor->listen ();
|
||||||
Accept ();
|
Accept ();
|
||||||
} catch (std::exception& ex) {
|
} catch (std::exception& ex) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue