From 413d5d22a92b5d2171448c5e7298ec2974d7669f Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Wed, 23 Aug 2017 14:41:47 -0600 Subject: [PATCH] ircd::http: Add minor commentary. --- include/ircd/http.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/ircd/http.h b/include/ircd/http.h index 1332a5f8a..747dfeae0 100644 --- a/include/ircd/http.h +++ b/include/ircd/http.h @@ -28,6 +28,9 @@ namespace ircd { namespace http { +// +// Add more as you go... +// enum code { CONTINUE = 100, @@ -125,8 +128,8 @@ struct query query() = default; }; -// Query string is read as a complete string off the tape (into request.query) -// and not parsed further. To make queries into that string pun this class on it. +// Query string is read as a complete string off the tape (into request.query) and +// not parsed further. To make queries into that string use this class to view it. struct query::string :string_view {