You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by ra...@madhaus.utcs.utoronto.ca on 1996/06/07 01:58:08 UTC

table_set for multiple cookies

I know this has been discussed before, but I didn't pay attention, and now
I need to do this.

The table_set() function doesn't let me set more than one value for a
given identifier.  This means I cannot do;

	table_set(r->headers_out,"SetCookie",cookie1);
	table_set(r->headers_out,"SetCookie",cookie2);
	   .
	table_set(r->headers_out,"SetCookie",cookieN);
	send_http_header(r);

Could someone enlighten me with a hack to get around this?  Or am I
doomed to scrap the call to send_http_header() and build my own header
lines?

-Rasmus