DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27023>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27023

Cookie could not delivered if the cookie made before proxy module.

           Summary: Cookie could not delivered if the cookie made before
                    proxy module.
           Product: Apache httpd-1.3
           Version: 1.3.29
          Platform: All
        OS/Version: Linux
            Status: NEW
          Severity: Enhancement
          Priority: Other
         Component: mod_proxy
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]


Hi 

In mod_proxy module, there's cookie bug. In ap_proxy_table_replace() function, 
there is no Set-Cookie key check and if any before module of mod-proxy made 
it's own cookie, ap_proxy_table_replace() will unset it from request out header 
and will be replaced by WAS made cookie.

For fixing this bug, 

add below codes in the for loop:

if (!strcmp(elts[i].key, "Set-Cookie")) continue;

If you need whole proxy_util.c file, please let me know.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to