Module Ip6.TRX

module TRX: sig .. end

type t = {
   src : Ip.Addr.t;
   dst : Ip.Addr.t;
   proto : Ip.Proto.t;
   mutable emit : Bitstring.bitstring -> unit;
   mutable recv : Bitstring.bitstring -> unit;
}
val tx : t -> Tools.Payload.outer_t -> unit
val rx : t -> string * int * int -> unit
val make : Ip.Addr.t -> Ip.Addr.t -> Ip.Proto.t -> Tools.trx