2018-01-24 15:48:25 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2018-02-06 00:17:03 +04:00
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
2018-01-24 15:48:25 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
type t = Ipaddr.V6.t
|
|
|
|
type port = int
|
|
|
|
|
|
|
|
val encoding : t Data_encoding.t
|
2018-02-22 18:35:50 +04:00
|
|
|
|
|
|
|
val pp : Format.formatter -> t -> unit
|
|
|
|
|
|
|
|
val of_string : string -> (t, string) result
|
|
|
|
val of_string_exn : string -> t
|
|
|
|
|
|
|
|
val to_string : t -> string
|