Re: [users@httpd] how to get the expiration date of a cookie

2017-10-09 Thread Eric Covener
Browser don't send the expiration date, just the keys and values. If there was no "Cookie" in r->headers_in then your browser didn't send any cookies. The other two tables are for output and you'd never see a Cookie header in them (only Set-Cookie). Debug with wireshark or browser developer tool

Re: [users@httpd] how to get the expiration date of a cookie

2017-10-06 Thread Eric Covener
On Fri, Oct 6, 2017 at 6:18 AM, eeadev dev wrote: > is not this meant to be the mailing list of apache? I d need to get this > info using C and the apr_library, not java unfortunately > > 2017-10-06 2:18 GMT-07:00 Suvendu Sekhar Mondal : >> >> On Fri, Oct 6, 2017 at 1:13 PM, eeadev dev wrote: >>

Re: [users@httpd] how to get the expiration date of a cookie

2017-10-06 Thread eeadev dev
is not this meant to be the mailing list of apache? I d need to get this info using C and the apr_library, not java unfortunately 2017-10-06 2:18 GMT-07:00 Suvendu Sekhar Mondal : > On Fri, Oct 6, 2017 at 1:13 PM, eeadev dev wrote: > > I cannot find a place where is written how to get the expira

Re: [users@httpd] how to get the expiration date of a cookie

2017-10-06 Thread Suvendu Sekhar Mondal
On Fri, Oct 6, 2017 at 1:13 PM, eeadev dev wrote: > I cannot find a place where is written how to get the expiration date of the > cookie I set. > Please anyone knows how to do that? > Using program? In Java world you can use getMaxAge() of Cookie class. --

[users@httpd] how to get the expiration date of a cookie

2017-10-06 Thread eeadev dev
I cannot find a place where is written how to get the expiration date of the cookie I set. Please anyone knows how to do that? thanks