Add warning for fragmented packets

pull/40/head
V2Ray 2015-10-06 09:37:51 +02:00
parent c61ddc7028
commit fe6e139e74
1 changed files with 1 additions and 0 deletions

View File

@ -49,6 +49,7 @@ func (server *SocksServer) AcceptPackets(conn *net.UDPConn) error {
continue
}
if request.Fragment != 0 {
log.Warning("Dropping framented UDP packets.")
// TODO handle fragments
continue
}