Ryan Ward b3b9e12fb8 working on new network manager
New features coming soon.
Redoing networking management
system threads are mostly done, whats left are some threaded objects like systemthreadedconnection
2020-01-05 13:44:52 -05:00

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