- Tampa, FL, USA
- https://andrewlalis.com
- Joined on
2024-03-22
I'd actually prefer to avoid using the existing standard library where at all possible (so that this code is largely compatible with Phobos3 or whatever).
In recent commits, I've removed the…
I've pushed a commit which adds a parseQueryParameters
function that takes a string and returns a list of QueryParameter
structs, which is more appropriate. I've removed the query params from…
Yep, makes sense. I've renamed it to V1
, and added some documentation text to explain the scope of each version.
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…
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.
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.
I am thinking of doing something like this, and adding const InternetAddress clientAddress;
to the ServerHttpRequest
:
/// The data representing a remote IPv4 internet address,…