mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 18:22:50 +01:00
ircd::http: Add minor commentary.
This commit is contained in:
parent
f1111b2695
commit
413d5d22a9
1 changed files with 5 additions and 2 deletions
|
@ -28,6 +28,9 @@
|
||||||
namespace ircd {
|
namespace ircd {
|
||||||
namespace http {
|
namespace http {
|
||||||
|
|
||||||
|
//
|
||||||
|
// Add more as you go...
|
||||||
|
//
|
||||||
enum code
|
enum code
|
||||||
{
|
{
|
||||||
CONTINUE = 100,
|
CONTINUE = 100,
|
||||||
|
@ -125,8 +128,8 @@ struct query
|
||||||
query() = default;
|
query() = default;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Query string is read as a complete string off the tape (into request.query)
|
// Query string is read as a complete string off the tape (into request.query) and
|
||||||
// and not parsed further. To make queries into that string pun this class on it.
|
// not parsed further. To make queries into that string use this class to view it.
|
||||||
struct query::string
|
struct query::string
|
||||||
:string_view
|
:string_view
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue