Add ual.lua
This commit is contained in:
parent
269b6e35bf
commit
de121b6dfa
26
http/ual.lua
Normal file
26
http/ual.lua
Normal file
@ -0,0 +1,26 @@
|
||||
local function storelist(table)
|
||||
file.remove("http/aplist.json")
|
||||
file.open("http/aplist.json","w")
|
||||
file.write(cjson.encode(table))
|
||||
file.close()
|
||||
print(cjson.encode(table))
|
||||
coroutine.yield()
|
||||
table = nil
|
||||
end
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
local function sendHeader(connection)
|
||||
connection:send("HTTP/1.0 200 OK\r\nContent-Type: application/json\r\nCache-Control: private, no-store\r\n\r\n")
|
||||
connection:send('{"error":0, "message":"OK"}')
|
||||
end
|
||||
|
||||
|
||||
|
||||
return function(connection,args)
|
||||
sendHeader(connection)
|
||||
wifi.sta.getap(storelist)
|
||||
end
|
||||
Loading…
x
Reference in New Issue
Block a user