Rmeoved unused files

This commit is contained in:
mvoelkel 2015-09-24 19:09:28 +02:00
parent 928816fbe4
commit fda50eb103
2 changed files with 0 additions and 41 deletions

View File

@ -1,25 +0,0 @@
#!/usr/bin/lua
-- HTTP header
print [[
Content-Type: text/plain
Set-Cookie: foo=bar
Set-Cookie: wonder=always
]]
-- body of page
-- find all environment variables using bash and a temporary file
fname = os.tmpname ()
os.execute ("/bin/sh -c set > " .. fname)
f = io.open (fname, "r") -- open it
s = f:read ("*a") -- read all of it
print (s)
f:close () -- close it
os.remove (fname)
print("")
params = io.stdin:read("*a")
print(params)

View File

@ -1,16 +0,0 @@
#!/usr/bin/lua
print("HTTP/1.0 200\r")
print("Content-type: application/sdp\r")
print("\r")
local query = os.getenv("QUERY_STRING")
print("v=0\r")
print("o=- 2890844526 2890842807 IN IP4 10.0.4.31\r")
print("s=RTSP Session\r")
print("t=0 0\r")
print("m=video 0 RTP/AVP 33\r")
print("a=control:stream=1\r")
print("a=fmtp:33\r")