Prechádzať zdrojové kódy

Add Lua script to exit the server

bel2125 9 rokov pred
rodič
commit
1473a00ce2
1 zmenil súbory, kde vykonal 15 pridanie a 0 odobranie
  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)
+