Skip to content

Conversation

@yizhao1
Copy link
Contributor

@yizhao1 yizhao1 commented Nov 5, 2025

boost::asio::ip::address::from_string is deprecated since boost 1.87[1]. Replace it with make_address.

Fix:
implementation/routing/src/routing_manager_impl.cpp:1406:98: error: 'from_string' is not a member of 'boost::asio::ip::address_v4'
1406 | _remote_address.is_v4() ? _remote_address.to_v4() : boost::asio::ip::address_v4::from_string("6.6.6.6");
| ^~~~~~~~~~~

[1] boostorg/asio@c0d1cfc

boost::asio::ip::address::from_string is deprecated since boost 1.87[1].
Replace it with make_address.

Fix:
implementation/routing/src/routing_manager_impl.cpp:1406:98: error: 'from_string' is not a member of 'boost::asio::ip::address_v4'
 1406 |  _remote_address.is_v4() ?  _remote_address.to_v4() : boost::asio::ip::address_v4::from_string("6.6.6.6");
      |                                                                                    ^~~~~~~~~~~

[1] boostorg/asio@c0d1cfc

Signed-off-by: Yi Zhao <[email protected]>
@fcmonteiro
Copy link
Collaborator

already done

@fcmonteiro fcmonteiro closed this Nov 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants