sig
  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 : Ip6.TRX.t -> Tools.Payload.outer_t -> unit
  val rx : Ip6.TRX.t -> string * int * int -> unit
  val make : Ip.Addr.t -> Ip.Addr.t -> Ip.Proto.t -> Tools.trx
end