pub type IcmpSocketState<I, D, BT> = SocketState<I, D, Icmp<BT>>;
Expand description
The state of an ICMP socket.
Aliased Type§
enum IcmpSocketState<I, D, BT> {
Unbound(UnboundSocketState<I, D, Icmp<BT>>),
Bound(BoundSocketState<I, D, Icmp<BT>>),
}