package openflow

  1. Overview
  2. Docs
module Header : sig ... end
type t =
  1. | Hello of Packet.bytes
  2. | ErrorMsg of Error.t
  3. | EchoRequest of Packet.bytes
  4. | EchoReply of Packet.bytes
  5. | SwitchFeaturesRequest
  6. | SwitchFeaturesReply of SwitchFeatures.t
  7. | FlowModMsg of FlowMod.t
  8. | PacketInMsg of PacketIn.t
  9. | PortStatusMsg of PortStatus.t
  10. | PacketOutMsg of PacketOut.t
  11. | BarrierRequest
  12. | BarrierReply
  13. | StatsRequestMsg of StatsRequest.t
  14. | StatsReplyMsg of StatsReply.t
val size_of : t -> int
val parse : Header.t -> string -> xid * t
val marshal : xid -> t -> string
val to_string : t -> string