Module Values.NetworkPathComponentDetailsSource

Information about the destination of the next component in the network path.

Sourcetype nonrec t = {
  1. address : StringList.t option;
    (*

    The IP addresses of the destination.

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

    A list of port ranges for the destination.

    *)
}
Sourceval make : ?address:??? -> ?portRanges:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t ]) list ] list ]) 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