Module Values.RangedSocketAddressSource

A socket address with a port range.

Sourcetype nonrec t = {
  1. name : IpV4Address.t;
    (*

    IPv4 socket address.

    *)
  2. portRange : IntegerRange.t;
    (*

    Port range of a socket address.

    *)
}
Sourceval context_ : string
Sourceval make : name:IpV4Address.t -> portRange:IntegerRange.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IpV4Address.t | `Structure of (string * [> `Integer of Integer.t ]) 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