Set SO_REUSEADDR on JSON port
This commit is contained in:
commit
2175c9dae1
1 changed files with 2 additions and 0 deletions
2
rpc.cpp
2
rpc.cpp
|
@ -1710,6 +1710,8 @@ void ThreadRPCServer2(void* parg)
|
||||||
ip::tcp::endpoint endpoint(bindAddress, GetArg("-rpcport", 8332));
|
ip::tcp::endpoint endpoint(bindAddress, GetArg("-rpcport", 8332));
|
||||||
ip::tcp::acceptor acceptor(io_service, endpoint);
|
ip::tcp::acceptor acceptor(io_service, endpoint);
|
||||||
|
|
||||||
|
acceptor.set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
|
||||||
|
|
||||||
#ifdef USE_SSL
|
#ifdef USE_SSL
|
||||||
ssl::context context(io_service, ssl::context::sslv23);
|
ssl::context context(io_service, ssl::context::sslv23);
|
||||||
if (fUseSSL)
|
if (fUseSSL)
|
||||||
|
|
Loading…
Reference in a new issue