We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff802a4 commit 96d683bCopy full SHA for 96d683b
Framework/DataInspector/src/DISocket.cxx
@@ -73,7 +73,7 @@ DIMessage::~DIMessage()
73
DISocket::DISocket(const std::string& address, int port) : ioContext(), socket(ioContext)
74
{
75
try {
76
- auto ip_address = boost::asio::ip::address::from_string(address);
+ auto ip_address = boost::asio::ip::make_address(address);
77
socket.connect(boost::asio::ip::tcp::endpoint(ip_address, port));
78
}
79
ASIO_CATCH("DISocket::DISocket")
0 commit comments