mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
8 lines
305 B
Text
8 lines
305 B
Text
|
|
function handleRequest(request, response)
|
||
|
|
{
|
||
|
|
response.setHeader("Set-Cookie", "cookie="+ request.host + "~" + Math.random());
|
||
|
|
response.setHeader("Content-Type", "text/plain", false);
|
||
|
|
response.setHeader("Cache-Control", "no-cache", false);
|
||
|
|
|
||
|
|
response.setStatusLine(request.httpVersion, 200, "OK");
|
||
|
|
}
|