runtime fixes and multicast ignore

This commit is contained in:
2026-03-19 14:59:29 +07:00
parent 29ff686341
commit 5f9cf382ea
2 changed files with 22 additions and 23 deletions
+7
View File
@@ -120,6 +120,13 @@ impl Engine {
break;
}
if n >= 20 && buf[0] >> 4 == 4 {
let dest_ip = &buf[16..20];
if dest_ip[0] >= 224 && dest_ip[0] <= 239 {
continue;
}
}
let mut token = TokenBuffer::with_capacity(n);
token.extend_from_slice(&buf[..n]);