- Tampa, FL, USA
- https://andrewlalis.com
- Joined on
2024-03-22
HTTP version of requests and TLS
Yep, makes sense. I've renamed it to V1
, and added some documentation text to explain the scope of each version.
HTTP version of requests and TLS
Request query parameter storage
So you're suggesting that the ServerHttpRequest
simply provides the full raw URL, and that users would be free to parse it however they like? And in that case, I'd provide convenience functions…
Client address
I'm going to go ahead and commit this along with the HTTP method update, and feel free to close if you're satisfied, or you are free to submit your own PR on it.
Support for arbitrary HTTP methods
Support for arbitrary HTTP methods
Yep, you're right; I'm changing the type to const string method;
. But I will still provide enum HttpMethod : string
as a convenience for common methods.
Client address
I am thinking of doing something like this, and adding const InternetAddress clientAddress;
to the ServerHttpRequest
:
/// The data representing a remote IPv4 internet address,…