From ff6b50fdf49f47befd22d2ad779f01d69c1f4570 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Fri, 20 Mar 2009 23:53:08 -0700 Subject: unicorn/http11: remove GATEWAY_INTERFACE It's a CGI-ism and is not in the Rack spec, so don't bother. --- ext/unicorn/http11/http11.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'ext') diff --git a/ext/unicorn/http11/http11.c b/ext/unicorn/http11/http11.c index d5c364a..ec6b8d9 100644 --- a/ext/unicorn/http11/http11.c +++ b/ext/unicorn/http11/http11.c @@ -33,8 +33,6 @@ static VALUE global_request_path; static VALUE global_content_type; static VALUE global_http_content_type; static VALUE global_http_body; -static VALUE global_gateway_interface; -static VALUE global_gateway_interface_value; static VALUE global_server_name; static VALUE global_server_port; static VALUE global_server_protocol; @@ -289,7 +287,6 @@ static void header_done(void *data, const char *at, size_t length) rb_hash_aset(req, global_content_type, ctype); } - rb_hash_aset(req, global_gateway_interface, global_gateway_interface_value); if((temp = rb_hash_aref(req, global_http_host)) != Qnil) { colon = memchr(RSTRING_PTR(temp), ':', RSTRING_LEN(temp)); if(colon != NULL) { @@ -501,8 +498,6 @@ void Init_http11() DEF_GLOBAL(http_body, "HTTP_BODY"); DEF_GLOBAL(content_type, "CONTENT_TYPE"); DEF_GLOBAL(http_content_type, "HTTP_CONTENT_TYPE"); - DEF_GLOBAL(gateway_interface, "GATEWAY_INTERFACE"); - DEF_GLOBAL(gateway_interface_value, "CGI/1.2"); DEF_GLOBAL(server_name, "SERVER_NAME"); DEF_GLOBAL(server_port, "SERVER_PORT"); DEF_GLOBAL(server_protocol, "SERVER_PROTOCOL"); -- cgit v1.2.3-24-ge0c7