so i started working with the network disk that comes as dungeon loot for OC and i think i've run into something. i can set IP's for my server, listen on ports, open connections between computers and send messages, but when i try to close the connection, it doesn't fire an event to close the connection.
server A
network.ip.bind("192.168.1.1")
network.tcp.listen(1024)
while true do local _, event, ch, data, remoteaddr, port = event.pull("tcp") print(event, ch, data, remoteaddr, port) end
server B
network.ip.bind("192.168.1.10")
network.tcp.open("192.168.1.1", 1024) -- Server A respons