From 393b59ef5d1d05fd00e102231e689f646c438582 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 24 Apr 2018 20:03:19 +0200 Subject: [PATCH] proc: expose HTTP Origin header in process environment Map the "Origin:" header as $HTTP_ORIGIN environment variable for use by request handling processes. Signed-off-by: Jo-Philipp Wich --- proc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proc.c b/proc.c index e360897..88ec31e 100644 --- a/proc.c +++ b/proc.c @@ -30,6 +30,7 @@ __header(connection, connection) \ __header(cookie, cookie) \ __header(host, host) \ + __header(origin, origin) \ __header(referer, referer) \ __header(user_agent, user-agent) \ __header(content_type, content-type) \ @@ -63,6 +64,7 @@ static const struct { { "HTTP_CONNECTION", HDR_connection }, { "HTTP_COOKIE", HDR_cookie }, { "HTTP_HOST", HDR_host }, + { "HTTP_ORIGIN", HDR_origin }, { "HTTP_REFERER", HDR_referer }, { "HTTP_USER_AGENT", HDR_user_agent }, { "HTTP_X_HTTP_METHOD_OVERRIDE", HDR_x_http_method_override }, -- 2.11.0