summaryrefslogtreecommitdiffstats
path: root/server/src/req_ctx.cppm
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/req_ctx.cppm')
-rw-r--r--server/src/req_ctx.cppm8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/src/req_ctx.cppm b/server/src/req_ctx.cppm
index 4a64d7d..464f2ff 100644
--- a/server/src/req_ctx.cppm
+++ b/server/src/req_ctx.cppm
@@ -20,8 +20,8 @@ export class req_ctx
20 20
21public: 21public:
22 explicit req_ctx( 22 explicit req_ctx(
23 trace::id tid, std::locale locale, http::verb_set route_verbs, 23 trace::id tid, std::locale locale, http::verb_set route_verbs,
24 bool keep_alive, bhttp::request_header<bhttp::fields> const& req_header) 24 bool keep_alive, bhttp::request_header<bhttp::fields> const& req_header)
25 : tid_{tid}, locale_{locale}, route_verbs_{route_verbs}, 25 : tid_{tid}, locale_{locale}, route_verbs_{route_verbs},
26 keep_alive_{keep_alive}, req_header_{req_header} 26 keep_alive_{keep_alive}, req_header_{req_header}
27 { 27 {
@@ -29,8 +29,8 @@ public:
29 29
30 template <typename ReqBody> 30 template <typename ReqBody>
31 explicit req_ctx( 31 explicit req_ctx(
32 trace::id tid, std::locale locale, http::verb_set route_verbs, 32 trace::id tid, std::locale locale, http::verb_set route_verbs,
33 bhttp::request<ReqBody> const& req) 33 bhttp::request<ReqBody> const& req)
34 : req_ctx{tid, locale, route_verbs, req.keep_alive(), req.base()} 34 : req_ctx{tid, locale, route_verbs, req.keep_alive(), req.base()}
35 { 35 {
36 } 36 }