Module Values_0.AnalysisPacketHeaderSource

Describes a header. Reflects any changes made by a component as traffic passes through. The fields of an inbound header are null except for the first component of a path.

Sourcetype nonrec t = {
  1. destinationAddresses : IpAddressList.t option;
    (*

    The destination addresses.

    *)
  2. destinationPortRanges : PortRangeList.t option;
    (*

    The destination port ranges.

    *)
  3. protocol : String_.t option;
    (*

    The protocol.

    *)
  4. sourceAddresses : IpAddressList.t option;
    (*

    The source addresses.

    *)
  5. sourcePortRanges : PortRangeList.t option;
    (*

    The source port ranges.

    *)
}
Sourceval make : ?destinationAddresses:??? -> ?destinationPortRanges:??? -> ?protocol:??? -> ?sourceAddresses:??? -> ?sourcePortRanges:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of IpAddress.t | `Structure of (string * [> `Integer of Integer.t ]) list ] list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t