Module Mirage_protocols.IpSource

IP errors and protocols.

Sourcetype error = [
  1. | `No_route of string
    (*

    can't send a message to that destination

    *)
  2. | `Would_fragment
    (*

    would need to fragment, but fragmentation is disabled

    *)
]
Sourceval pp_error : error Fmt.t
Sourcetype proto = [
  1. | `TCP
  2. | `UDP
  3. | `ICMP
]
Sourceval pp_proto : proto Fmt.t