boost-asio
boost::io_service api implementation seems missing?
I\'m running boost 1.43.0 release, and I see the following api (in 开发者_高级运维asio::io_service class):[详细]
2023-04-03 03:08 分类:问答Boost Asio Peek and Completion Condition
I am using Boost Asio to set up a socket connection.I would like to peek at the data in the buffer without consuming it, and I would like to use a completion condition to ensure that I could stop the[详细]
2023-04-03 01:47 分类:问答boost asio "A non-recoverable error occurred during database lookup"
I\'m currently stress testing my server. sometimes I get \"A non-recoverable error occurred during database lookup\" Error[详细]
2023-04-02 13:01 分类:问答need example of boost:asio async server with receiver and acceptor
I have been looked alot of good exmaple but i didnt find if some one can help please help me, this is my current class[详细]
2023-04-02 12:13 分类:问答Should I Use Blocking or Asynchronous boost::asio::socket Read/Write to Implement a Protocol Handshake
I\'m implementing an RTMP protocol using boost::asio::socket. After the async_accept, the protocol requires a 3-step handshake. See the code below:[详细]
2023-04-02 07:49 分类:问答c++ boost: how to implement session per thread
I want to implement there is one thread for each connected session in a server. However, the handle accept callback is called in the same thread.I am not quite familiar the threading model in asio. Is[详细]
2023-04-01 23:28 分类:问答Finding the destination IP address of the received UDP message in boost library
I am working with multicast UDP messages. I need to compare the destination IP address of the received packet with the multicast address of the channel, the receiver is supposed to be listening on to[详细]
2023-04-01 21:37 分类:问答boost::ref and boost::asio completion handlers, pass-by-reference
m_io_service.post(boost::ref(i)); I have this call in a section of code, the underlying type i is definetly a callable (because removing the boost::ref leads to pass by value, which works fine), how[详细]
2023-04-01 07:51 分类:问答How To Apply This Boost ASIO Example To My Application
I\'ve been reading a lot of ASIO examples, but I\'m still sort of confused on how to use them in my application.[详细]
2023-03-31 19:12 分类:问答Implementing efficient multithreaded file I/O in C++
I\'m currently developing a custom cross-platform file server (C++, boost). Obviously, it is going to do a lot of reading from and writing to HDD. To further complicate the matters, it is also going t[详细]
2023-03-31 05:44 分类:问答