File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ ThreadContext::HeaderIdBundle::HeaderIdBundle(kj::HttpHeaderTable::Builder& buil
2525 contentLength(builder.add(" Content-Length" )),
2626 accept(builder.add(" Accept" )),
2727 acceptEncoding(builder.add(" Accept-Encoding" )),
28- cfRay(builder.add(" CF-Ray" )) {}
28+ cfRay(builder.add(" CF-Ray" )),
29+ origin(builder.add(" Origin" )) {}
2930
3031ThreadContext::ThreadContext (kj::Timer& timer,
3132 kj::EntropySource& entropySource,
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ class ThreadContext {
3636 const kj::HttpHeaderId accept; // used in tracing instrumentation
3737 const kj::HttpHeaderId acceptEncoding; // used in tracing instrumentation
3838 const kj::HttpHeaderId cfRay; // used in tracing instrumentation
39+ const kj::HttpHeaderId origin;
3940 };
4041
4142 ThreadContext (kj::Timer& timer,
You can’t perform that action at this time.
0 commit comments