Changeset 2012
- Timestamp:
- 11/04/2007 04:53:17 PM (10 months ago)
- Location:
- branches/lighttpd-1.4.x
- Files:
-
- 5 modified
-
doc/configuration.txt (modified) (1 diff)
-
src/array.h (modified) (1 diff)
-
src/configfile-glue.c (modified) (1 diff)
-
src/configparser.y (modified) (1 diff)
-
src/response.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/lighttpd-1.4.x/doc/configuration.txt
r1371 r2012 86 86 $HTTP["cookie"] 87 87 match on cookie 88 $HTTP["scheme"] 89 match on scheme 88 90 $HTTP["host"] 89 91 match on host -
branches/lighttpd-1.4.x/src/array.h
r1942 r2012 91 91 COMP_HTTP_REMOTEIP, 92 92 COMP_HTTP_QUERYSTRING, 93 COMP_HTTP_SCHEME, 93 94 94 95 COMP_LAST_ELEMENT -
branches/lighttpd-1.4.x/src/configfile-glue.c
r1942 r2012 342 342 break; 343 343 } 344 case COMP_HTTP_SCHEME: 345 l = con->uri.scheme; 346 break; 347 344 348 case COMP_HTTP_URL: 345 349 l = con->uri.path; -
branches/lighttpd-1.4.x/src/configparser.y
r1987 r2012 423 423 { COMP_HTTP_REMOTEIP, CONST_STR_LEN("HTTP[\"remoteip\"]" ) }, 424 424 { COMP_HTTP_QUERYSTRING, CONST_STR_LEN("HTTP[\"querystring\"]") }, 425 { COMP_HTTP_SCHEME, CONST_STR_LEN("HTTP[\"scheme\"]" ) }, 425 426 { COMP_UNSET, NULL, 0 }, 426 427 }; -
branches/lighttpd-1.4.x/src/response.c
r1767 r2012 181 181 buffer_to_lower(con->uri.authority); 182 182 183 config_patch_connection(srv, con, COMP_HTTP_SCHEME); /* Scheme: */ 183 184 config_patch_connection(srv, con, COMP_HTTP_HOST); /* Host: */ 184 185 config_patch_connection(srv, con, COMP_HTTP_REMOTEIP); /* Client-IP */

