Module Frenetic_kernel.Packet.Igmp

IGMP frame of a packet.

type msg =
| Igmp1and2 of Igmp1and2.t
| Igmp3 of Igmp3.t
| Unparsable of int8 * Cstruct.t
include sig ... end
val msg_of_sexp : Ppx_sexp_conv_lib.Sexp.t ‑> msg
val sexp_of_msg : msg ‑> Ppx_sexp_conv_lib.Sexp.t
type t = {
ver_and_typ : int8;

(** IGMP version/type. *)

msg : msg;

(** enclosed IGMP message *)

}
include sig ... end
val t_of_sexp : Ppx_sexp_conv_lib.Sexp.t ‑> t
val sexp_of_t : t ‑> Ppx_sexp_conv_lib.Sexp.t