瀏覽代碼

Add Lua script to exit the server

bel2125 9 年之前
父節點
當前提交
1473a00ce2
共有 1 個文件被更改,包括 15 次插入0 次删除
  1. 15 0
      test/exit.lua

+ 15 - 0
test/exit.lua

@@ -0,0 +1,15 @@
+
+msg=[[<html><body>
+<p>Exit CivetWeb</p>
+</body></html>
+]]
+
+mg.write("HTTP/1.0 200 OK\r\n")
+mg.write("Connection: close\r\n")
+mg.write("Content-Length: " .. #msg .. "\r\n")
+mg.write("Content-Type: text/html\r\n")
+mg.write("\r\n")
+mg.write(msg)
+
+os.exit(0)
+