New features coming soon. Redoing networking management system threads are mostly done, whats left are some threaded objects like systemthreadedconnection
11 lines
298 B
Lua
11 lines
298 B
Lua
return function(self,data)
|
|
local cmd,data = data:match("!(.-)!(.*)")
|
|
if cmd == "PONG" then
|
|
--
|
|
elseif cmd == "CHANNEL" then
|
|
--
|
|
elseif cmd == "RETURNS" then
|
|
local rets = bin.new(data):getBlock("t")
|
|
self.node.master.OnDataReturned:Fire(rets)
|
|
end
|
|
end |