package openflow

  1. Overview
  2. Docs
type supported_wildcards = {
  1. dlSrc : bool;
  2. dlDst : bool;
  3. dlTyp : bool;
  4. dlVlan : bool;
  5. dlVlanPcp : bool;
  6. nwSrc : bool;
  7. nwDst : bool;
  8. nwProto : bool;
  9. nwTos : bool;
  10. tpSrc : bool;
  11. tpDst : bool;
  12. inPort : bool;
}
module Capabilities : sig ... end
module SupportedActions : sig ... end
type t = {
  1. switch_id : switchId;
  2. num_buffers : int32;
  3. num_tables : Packet.int8;
  4. supported_capabilities : Capabilities.t;
  5. supported_actions : SupportedActions.t;
  6. ports : PortDescription.t list;
}
val to_string : t -> string