mirror of
https://github.com/ShadowKatStudios/OC-Minitel.git
synced 2024-11-23 02:28:05 +11:00
Merge branch 'master' of github.com:ShadowKatStudios/OC-Minitel
This commit is contained in:
commit
5a52ca5f8d
@ -51,6 +51,9 @@
|
||||
["master/vTunnel/interminitel.lua"] = "/lib",
|
||||
["master/vTunnel/vtunnel.lua"] = "/bin",
|
||||
},
|
||||
dependencies = {
|
||||
["vcomponent"] = ""
|
||||
},
|
||||
name = "vTunnel",
|
||||
description = "Linked card emulator",
|
||||
authors = "Izaya",
|
||||
|
@ -87,10 +87,10 @@ spawn(clientLoop)
|
||||
function pushLoop()
|
||||
while true do
|
||||
for id,msg in pairs(messages) do
|
||||
if msg:len() > 3 then
|
||||
if msg[1]:len() > 3 then
|
||||
for k,client in pairs(clients) do
|
||||
client.conn:send(msg)
|
||||
reprint("Message #"..tostring(id).." -> Client #"..tostring(k).." - "..msg)
|
||||
client.conn:send(msg[1])
|
||||
reprint("Message #"..tostring(id).." (Client #"..tostring(msg[2]).." -> Client #"..tostring(k).." - "..msg[1])
|
||||
end
|
||||
end
|
||||
messages[id] = nil
|
||||
@ -103,10 +103,10 @@ spawn(pushLoop)
|
||||
|
||||
function bufferLoop()
|
||||
while true do
|
||||
for _,client in pairs(clients) do
|
||||
for id,client in pairs(clients) do
|
||||
if client.buffer:len() > 0 then
|
||||
if imt.decodePacket(client.buffer) then
|
||||
messages[#messages+1] = imt.encodePacket(imt.decodePacket(client.buffer))
|
||||
messages[#messages+1] = {imt.encodePacket(imt.decodePacket(client.buffer)),id}
|
||||
client.buffer = imt.getRemainder(client.buffer) or ""
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user