$r->err_headers_out->add("Set-Cookie", $cookie->as_string);
We use err_headers_out rather than
err_header_out because the former method allows
for multiple values for a header, whereas the latter does not. That
is, err_headers_out lets you build up a header
over time by adding to its existing value before it's sent, as we
might do here if we independently set three cookies. The
err_header_out method always replaces, never
augments.