[F] Remove TCP Ack of ack

pull/109/head
Azalea 2025-01-16 17:50:59 -05:00
parent aeab453e8b
commit d7abb343a7
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ fun ActiveClient.handle(msg: Msg) {
lastHeartbeat = millis()
send(ctlMsg(Command.CTL_HEARTBEAT))
}
Command.DATA_SEND, Command.CTL_TCP_ACCEPT_ACK -> {
Command.DATA_SEND -> {
target ?: return log.warn("Send: Target not found: ${msg.dst}")
if (msg.proto == Proto.TCP && msg.sid !in tcpStreams)