]> git.proxmox.com Git - ceph.git/blame - ceph/src/civetweb/test/exit.lua
buildsys: switch source download to quincy
[ceph.git] / ceph / src / civetweb / test / exit.lua
CommitLineData
7c673cae
FG
1\r
2msg=[[<html><body>\r
3<p>Exit CivetWeb</p>\r
4</body></html>\r
5]]\r
6\r
7mg.write("HTTP/1.0 200 OK\r\n")\r
8mg.write("Connection: close\r\n")\r
9mg.write("Content-Length: " .. #msg .. "\r\n")\r
10mg.write("Content-Type: text/html\r\n")\r
11mg.write("\r\n")\r
12mg.write(msg)\r
13\r
14os.exit(0)\r
15\r