OpenFlow0x01.SwitchFeaturesSourceSwitch features data structure. See Section 5.3.1 of the OpenFlow 1.0 specification.
type supported_wildcards = {dlSrc : bool;dlDst : bool;dlTyp : bool;dlVlan : bool;dlVlanPcp : bool;nwSrc : bool;nwDst : bool;nwProto : bool;nwTos : bool;tpSrc : bool;tpDst : bool;inPort : bool;}Fields that support wildcard patterns on this switch.
See the ofp_capabilities enumeration in Section 5.3.1 of the OpenFlow 1.0 specification.
Describes which actions (Action.t) this switch supports.
type t = {switch_id : switchId;num_buffers : int32;num_tables : Packet.int8;supported_capabilities : Capabilities.t;supported_actions : SupportedActions.t;ports : portDescription list;}