1 line
316 B
Lua
1 line
316 B
Lua
require("string")
|
|
|
|
function OnNewClient(ip,port)
|
|
showdata("on new client from lua " .. ip..port.."32232323\r\n")
|
|
end
|
|
|
|
function OnClientRecvData(data)
|
|
showdata("client recieve data from lua "..data.."\r\n")
|
|
end
|
|
|
|
|
|
function OnClientDisconnect(ip,port)
|
|
showdata("client leave from lua " .. ip..port)
|
|
end
|
|
|
|
|
|
|
|
|