mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Mac: UT node server fix IP localhost by aliasing
This commit is contained in:
parent
a39b1d56c8
commit
1b7a708fa3
1 changed files with 3 additions and 0 deletions
|
@ -303,6 +303,9 @@ TEST(node_server, bind_same_p2p_port)
|
||||||
|
|
||||||
Relevant part about REUSEADDR from man:
|
Relevant part about REUSEADDR from man:
|
||||||
https://www.man7.org/linux/man-pages/man7/ip.7.html
|
https://www.man7.org/linux/man-pages/man7/ip.7.html
|
||||||
|
|
||||||
|
For Mac OSX, set the following alias, before running the test, or else it will fail:
|
||||||
|
sudo ifconfig lo0 alias 127.0.0.2
|
||||||
*/
|
*/
|
||||||
vm.find(nodetool::arg_p2p_bind_ip.name)->second = boost::program_options::variable_value(std::string("127.0.0.2"), false);
|
vm.find(nodetool::arg_p2p_bind_ip.name)->second = boost::program_options::variable_value(std::string("127.0.0.2"), false);
|
||||||
vm.find(nodetool::arg_p2p_bind_port.name)->second = boost::program_options::variable_value(std::string(port), false);
|
vm.find(nodetool::arg_p2p_bind_port.name)->second = boost::program_options::variable_value(std::string(port), false);
|
||||||
|
|
Loading…
Reference in a new issue