blob: 2d7cac5e45a2714b8107b1784f5cf9d421516948 (
plain)
1
2
3
4
5
|
function handleRequest(request, response) {
response.setStatusLine(request.httpVersion, 200);
// Write the cookie header value to the body for the test to inspect.
response.write(request.getHeader("Cookie"));
}
|