Zorya-NEO/mods/net_minitel/minitel-5.lua

29 lines
343 B
Lua
Raw Normal View History

2020-05-17 14:23:43 +10:00
local c_sock = {}
local h_sock = {}
function c_sock:read(a)
local dat = self.data:sub(1, a-1)
self.data = self.data:sub(a)
return dat
end
function c_sock:recieve(a)
end
function c_sock:write(d)
end
function c_sock:send(d)
end
function c_sock:close()
end
function c_sock:timeout(t)
if t then self.to = t endsi
return self.to
end