Module Values.PortRangeSource

The range of ports the rule applies to.

Sourcetype nonrec t = {
  1. from : Port.t;
    (*

    The first port in the range.

    *)
  2. to_ : Port.t;
    (*

    The last port in the range.

    *)
}
Sourceval context_ : string
Sourceval make : from:Port.t -> to_:Port.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Port.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