mirror of
https://github.com/DigitalDevices/octonet.git
synced 2023-10-10 13:36:52 +02:00
Rmeoved unused files
This commit is contained in:
parent
928816fbe4
commit
fda50eb103
@ -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)
|
@ -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")
|
Loading…
Reference in New Issue
Block a user