Skip to content

Commit 4fc96c9

Browse files
committed
Replaced boost::asio::io_service with boost::asio::io_context in rtsp_server.hpp, see #197
1 parent 21690a8 commit 4fc96c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

daemon/rtsp_server.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class RtspServer {
125125
void accept();
126126

127127
std::mutex mutex_;
128-
boost::asio::io_service io_service_;
128+
boost::asio::io_context io_service_;
129129
std::shared_ptr<SessionManager> session_manager_;
130130
std::shared_ptr<Config> config_;
131131
std::vector<std::weak_ptr<RtspSession> > sessions_{session_num_max};

0 commit comments

Comments
 (0)