how do i read a pac开发者_开发问答ket in boost::asio for example 0x01, current code i have only reads texts:
I have been struggling over this problem for a wee while in my application and so I have tried to reproduce the problem in a simple code snippet.
I am currently developing a simple server application which should be also IPv6 capable. 开发者_StackOverflow社区IPv6 works fine on Windows (using MSVC2010), but it does not on Linux.
I have a problem concerning boost asio libraries. I successfully tried to create a socket between a client and a server, this involves creation of resolvers in order to specify ip and port to the serv
I wrote a server that is listening for incomming TCP connections and clients connecting to it. When I shut down the server and restart it on the same port, I sometimes get the error message EADDRINUSE
I\'m writing a networking application that uses ASIO/UDP to send and receive between a single remote/locale endpoint pair. I had used udp::socket::receive to receive data and everything in my code wor
Hopefully I provided the useful info, thanks. Backtrace (gdb) run Starting program: D:\\C++\\fail/ircserver.exe
cpp_netlib docs contains example HTTP client, but I see it works only in blocking mode: http_client::response response = client.get(request);
I use synchronous boost::asio SSL sockets in my application. I initialize all parameters and then connect to some hosts (one after another) and do a GET request for each host.
i made a server via boost networking and its working good but when i store the clients connecting to it in a std::map, then loop all the map and receive from them it gives me segmentation fault, heres