Searched refs:DstUnreachable (Results 1 – 7 of 7) sorted by relevance
/smoltcp-0.9.1/src/wire/ |
D | icmpv4.rs | 15 DstUnreachable = 3, 39 Message::DstUnreachable => write!(f, "destination unreachable"), in fmt() 55 pub enum DstUnreachable(u8) { 91 impl fmt::Display for DstUnreachable { implementation 94 DstUnreachable::NetUnreachable => write!(f, "destination network unreachable"), in fmt() 95 DstUnreachable::HostUnreachable => write!(f, "destination host unreachable"), in fmt() 96 DstUnreachable::ProtoUnreachable => write!(f, "destination protocol unreachable"), in fmt() 97 DstUnreachable::PortUnreachable => write!(f, "destination port unreachable"), in fmt() 98 DstUnreachable::FragRequired => write!(f, "fragmentation required, and DF flag set"), in fmt() 99 DstUnreachable::SrcRouteFailed => write!(f, "source route failed"), in fmt() [all …]
|
D | icmpv6.rs | 16 DstUnreachable = 0x01, 84 Message::DstUnreachable => write!(f, "destination unreachable"), in fmt() 104 pub enum DstUnreachable(u8) { 122 impl fmt::Display for DstUnreachable { implementation 125 DstUnreachable::NoRoute => write!(f, "no route to destination"), in fmt() 126 DstUnreachable::AdminProhibit => write!( in fmt() 130 DstUnreachable::BeyondScope => write!(f, "beyond scope of source address"), in fmt() 131 DstUnreachable::AddrUnreachable => write!(f, "address unreachable"), in fmt() 132 DstUnreachable::PortUnreachable => write!(f, "port unreachable"), in fmt() 133 DstUnreachable::FailedPolicy => { in fmt() [all …]
|
D | mod.rs | 201 DstUnreachable as Icmpv4DstUnreachable, Message as Icmpv4Message, Packet as Icmpv4Packet, 211 DstUnreachable as Icmpv6DstUnreachable, Message as Icmpv6Message, Packet as Icmpv6Packet,
|
/smoltcp-0.9.1/src/socket/ |
D | icmp.rs | 382 Icmpv4Repr::DstUnreachable { data, header, .. } in accepts() 401 Icmpv6Repr::DstUnreachable { data, header, .. } in accepts() 815 let icmp_repr = Icmpv4Repr::DstUnreachable { in test_accepts_udp() 1077 let icmp_repr = Icmpv6Repr::DstUnreachable { in test_accepts_udp()
|
/smoltcp-0.9.1/src/iface/interface/ |
D | tests.rs | 227 let icmp_repr = Icmpv4Repr::DstUnreachable { in test_icmp_error_no_payload() 355 let icmp_repr = Icmpv4Repr::DstUnreachable { in test_icmp_error_port_unreachable() 630 let expected_icmp_repr = Icmpv6Repr::DstUnreachable { in test_icmp_reply_size() 644 let expected_icmp_repr = Icmpv4Repr::DstUnreachable { in test_icmp_reply_size()
|
D | ipv4.rs | 156 let icmp_reply_repr = Icmpv4Repr::DstUnreachable { in process_ipv4()
|
D | mod.rs | 1397 let icmpv4_reply_repr = Icmpv4Repr::DstUnreachable { in process_udp() 1408 let icmpv6_reply_repr = Icmpv6Repr::DstUnreachable { in process_udp()
|