-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update boost::asio usage to conform to newer standards: #144
base: develop
Are you sure you want to change the base?
Conversation
vtnerd
commented
Oct 24, 2024
- Convert boost::asio::io_service to boost::asio::io_context
- Drop usage of GET_IO_SERVICE macro from monero
- Refactor REST server to manage resources better
fa67e73
to
46f78f1
Compare
Force pushed two more widespread updates:
There is one exception of |
46f78f1
to
0454651
Compare
Force pushed some more updates:
|
0454651
to
bbe1169
Compare
Force pushed a rebase so that the newest |
bbe1169
to
65e947a
Compare
Forgot to include latest changes, trying another force push. |
65e947a
to
f41df08
Compare
Rebased after latest bug fixes (there were merge conflicts). |
* Convert boost::asio::io_service to boost::asio::io_context * Convert strand.wrap(...) to boost::asio::bind_executor(strand, ...) * Convert strand.dispatch(...) to boost::asio::dispatch(strand, ...) * Convert io_context.reset() to io_context.restart() * Convert null_buffers() usage to socket.async_wait(...) * Drop usage of GET_IO_SERVICE macro from monero * Refactor REST server to manage resources better
f41df08
to
73a36aa
Compare
Discovered another deprecated ASIO feature in use:
The changes have been force pushed. |