Fix: socks inbound packet typo

This commit is contained in:
gVisor bot 2021-07-21 23:08:52 +08:00
parent b926902a22
commit b29ea418cb

View file

@ -70,7 +70,7 @@ func handleSocksUDP(pc net.PacketConn, in chan<- *inbound.PacketAdapter, buf []b
bufRef: buf, bufRef: buf,
} }
select { select {
case in <- inbound.NewPacket(target, packet, C.TPROXY): case in <- inbound.NewPacket(target, packet, C.SOCKS):
default: default:
} }
} }