Explorar o código

Delete, this is now part of node-info.lua

Marcos Kirsch %!s(int64=9) %!d(string=hai) anos
pai
achega
068b45023e
Modificáronse 1 ficheiros con 0 adicións e 13 borrados
  1. 0 13
      http/memory.lua

+ 0 - 13
http/memory.lua

@@ -1,13 +0,0 @@
-local function sendHeader(connection)
-   connection:send("HTTP/1.0 200 OK\r\nContent-Type: text/html\r\Cache-Control: private, no-store\r\n\r\n")
-end
-
-return function (connection, args)
-   sendHeader(connection)
-   connection:send('<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><title>A Lua script sample</title></head>')
-   connection:send('<body>')
-   connection:send('<h1>Memory Statistics</h1>')
-   connection:send('Heap: ' .. node.heap() .. ' bytes')
-   connection:send('Garbage collector use: ' .. collectgarbage("count") .. ' kilobytes')
-   connection:send('</body></html>')
-end