1
0
mirror of https://github.com/XeonSquared/OC-Copper.git synced 2024-11-14 22:08:05 +11:00

Fix the hierarchial gateway and make the OC/CU/RE driver more resilient

This commit is contained in:
20kdc 2017-03-20 22:58:05 +00:00
parent 9df9823a4f
commit eeb01821c3
2 changed files with 18 additions and 13 deletions

View File

@ -86,19 +86,22 @@ end
while true do while true do
local e = {event.pull("modem_message")} local e = {event.pull("modem_message")}
if e[1] == "modem_message" then if e[1] == "modem_message" then
-- type, to, from, port, dist, data -- type, to, from, port, dist, magic[6], data[7]
if ((e[2] == tunnel.address) or (e[4] == 4957)) then if ((e[2] == tunnel.address) or (e[4] == 4957)) then
local hops, nfrom, nto, data = cdlib.decode(e[6]) if e[6] == "copper" then
if type(e[7]) == "string" then
local hops, nfrom, nto, data = cdlib.decode(e[7])
if data then if data then
if e[2] == tunnel.address then if e[2] == tunnel.address then
-- Pass it on as given. -- Pass it on as given.
modem.broadcast(4957, e[6]) modem.broadcast(4957, "copper", e[7])
elseif e[2] == modem.address then elseif e[2] == modem.address then
-- Process it, then give to tunnel -- Process it, then give to tunnel
if hops ~= 255 then if hops ~= 255 then
local tfrom, tto = checkLen(processFrom(nfrom)), checkLen(processTo(nto)) local tfrom, tto = checkLen(processFrom(nfrom)), checkLen(processTo(nto))
if tfrom and tto then if tfrom and tto then
tunnel.send(cdlib.encode(hops + 1, tfrom, tto, data)) tunnel.send("copper", cdlib.encode(hops + 1, tfrom, tto, data))
end
end end
end end
end end

View File

@ -44,8 +44,10 @@ event.listen("modem_message", function (et, adto, adfrom, port, dist, magic, dat
if et ~= "modem_message" then return end if et ~= "modem_message" then return end
if port == 4957 then if port == 4957 then
if magic == "copper" then if magic == "copper" then
if type(data) == "string" then
node.input(adfrom, data) node.input(adfrom, data)
end end
end end
end
end) end)
event.timer(1, node.refresh, math.huge) event.timer(1, node.refresh, math.huge)