protected network services

This commit is contained in:
kepler155c@gmail.com
2019-04-20 13:48:13 -04:00
parent 62a3bc1360
commit 7749e14cad
6 changed files with 83 additions and 54 deletions

View File

@@ -76,7 +76,11 @@ Event.addRoutine(function()
print('telnet: connection from ' .. socket.dhost)
Event.addRoutine(function()
telnetHost(socket)
local s, m = pcall(telnetHost, socket)
if not s and m then
print('Telnet error')
_G.printError(m)
end
end)
end
end)