You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The minimum ICMP/UDP packet size for IPv6 is 48 bytes (40 for IPv6 header + 8 for ICMP or UDP header) however the --packet-size command line option has a minimum of 28 bytes, which is correct or IPv4 but crashes for IPv6:
$ ./target/debug/trip -u google.com -6 --packet-size 28 -m stream
Tracing to google.com (2a00:1450:4009:815::200e)
thread 'tracer-19120' panicked at src/tracing/net/ipv6.rs:288:5:
attempt to subtract with overflow
The fix is to ensure the minimum packet size is 48 for IPv6.
The text was updated successfully, but these errors were encountered:
The minimum ICMP/UDP packet size for IPv6 is 48 bytes (40 for IPv6 header + 8 for ICMP or UDP header) however the
--packet-size
command line option has a minimum of 28 bytes, which is correct or IPv4 but crashes for IPv6:The fix is to ensure the minimum packet size is 48 for IPv6.
The text was updated successfully, but these errors were encountered: