I am trying to parse access logs from Zeus web server but I noticed that "Set-Cookie" header for the response will contain \r\n line feed for multiple cookies.
Set-Cookie: cookie1=1-2; domain=.google.com; path=/; expires=Wed, 10-May-2017 07:14:05 GMT\r\n
Set-Cookie: cookie2=1-2; domain=.google.com; path=/; expires=Wed, 10-May-2017 07:14:05 GMT\r\n
This separates a single hit/access into multilines and makes it harder to parse the log. Is there a way to combine this into single line through HTTP protocol? Or is this a webserver-specific functionality?