-
Hello,
I modified the example_with_all.cpp as the following:
CROW_ROUTE(app, "/")
.name("hello")
([&app]{
app.stop();
return "Hello World!";
});
I…
-
From the changelog:
> The service template parameters, and the corresponding classes, are disabled by default. For example, instead of basic_socket we now have simply basic_socket. The old interfac…
-
Hi. I am just following the echo_server.cpp example. I am getting this error when calling server.listen()
> asio listen error: asio.system:6 (The handle is invalid.)
And try..catch() issues the…
-
Now that we have #45 ...
Is it viable to remove Boost as a dependency and just use the Non-boost version of ASIO?
https://think-async.com/Asio/AsioStandalone.html
-
1) In the documentation design and elsewhere on dependency, it notes the dependency on ASIO and I take it that this is the Boost ASIO that it's referring to. In the section of [Thread allocation](htt…
-
```
Using Ubuntu 20.04
g++ (Ubuntu 11.1.0-1ubuntu1~20.04) 11.1.0
quickemu ppa added for liburing: https://github.com/quickemu-project/quickemu
```
When using Boost.Asio 1.78, to use the new `s…
-
This apparently compiles fine, unexpected, with VS2013, but doesn't compile with mingw64 on msys2:
```
In function `asio::detail::win_iocp_socket_service_base::start_accept_op(asio::detail::win_iocp…
-
I was using the following code to add server certificate to http_listener, also tried to verify the certificate of external clients who are trying to connect to http_listener. The server certificate (…
chnex updated
8 years ago
-
Hi, I'm having an issue with the HTTP client. I've built the HTTP server and HTTP client examples, and while the server seems to work perfectly, using curl to test it, the client seems to hang wheneve…
-
I am using boost::asio to implement a simple http client. The client implements HTTP/1.0, so it shuts down the TX side of the socket after sending the request.
On Windows systems, I get a receive e…