summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorluwenpeng <[email protected]>2023-09-08 15:16:17 +0800
committerluwenpeng <[email protected]>2023-09-08 15:24:43 +0800
commit3c6fc844b5e15ae85e08f8bee18e54c30f33d988 (patch)
treea25d85e25a08b3f9b2309549400ea473dd6442c7 /src/main.rs
parent16066bd3dc9f38e21cf8247b4b913c5bcc59d57e (diff)
[feature] Support ICMPv6 Decode
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index d4fc3ac..8ffdb9c 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -46,6 +46,9 @@ fn trigger_packet_event(
PacketEvent::ICMP_EVENT => {
// TODO
}
+ PacketEvent::ICMPV6_EVENT => {
+ // TODO
+ }
}
}
}