Refactored telnet code
This commit is contained in:
parent
bf360700d3
commit
b02392dc64
14
telnet.lua
14
telnet.lua
@ -26,13 +26,13 @@ function startTelnetServer()
|
|||||||
end)
|
end)
|
||||||
c:on("sent", function()
|
c:on("sent", function()
|
||||||
if (#lines > 0) then
|
if (#lines > 0) then
|
||||||
l1=nil
|
local line1=nil
|
||||||
for k,v in pairs(lines) do if (k==1) then l1=v end end
|
for k,v in pairs(lines) do if (k==1) then line1=v end end
|
||||||
if (l1 ~= nil) then
|
if ( line1 ~= nil ) then
|
||||||
table.remove(lines, 1)
|
table.remove(lines, 1)
|
||||||
print( tostring(l1) )
|
print( tostring(line1) )
|
||||||
telnetClient:send(l1)
|
telnetClient:send(line1)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
print("Welcome to the Wordclock.")
|
print("Welcome to the Wordclock.")
|
||||||
|
Loading…
Reference in New Issue
Block a user