vote up 0 vote down star

In the source code of the Perl module CGI.pm, in the submodule CGI::Cookies.pm, there is the following line:

$raw_cookie = $ENV{HTTP_COOKIE} || $ENV{COOKIE};

I'm interested in $ENV{COOKIE} here. Are there any web servers (obsolete or otherwise) which transmit cookie information using the COOKIE environment variable instead of the HTTP_COOKIE used by Apache? I've never seen COOKIE and other CGI libraries don't seem to support it.

flag

Should we be looking at servers or browsers as the culprits here? – Manni Oct 25 at 14:17
1  
Servers, of course. – Kinopiko Oct 25 at 14:25

1 Answer

vote up 0 vote down

I find Google Code Search to be a useful tool for this sort of question.

link|flag
Well, nothing except searching for COOKIE in all open source code. – brian d foy Oct 26 at 6:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.