File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ 0.6.7 (2022-03-18)
2+ =====
3+ * Default to ipv4 host resolution for backward
4+ compatibility.
5+
160.6.6 (2022-01-30)
27======
38* Add support for ipv6 connection,
Original file line number Diff line number Diff line change 11# This file is generated by dune, edit dune-project instead
22opam-version: "2.0"
3- version: "0.6.6 "
3+ version: "0.6.7 "
44synopsis: "OCaml client for the various icecast & shoutcast source protocols"
55description:
66 "The cry library is an implementation of the various icecast & shoutcast protocols to connect to streaming servers such as icecast"
Original file line number Diff line number Diff line change 11(lang dune 2 .8)
2- ( version 0 .6.6 )
2+ ( version 0 .6.7 )
33(name cry)
44( source ( github savonet/ocaml-cry) )
55( license GPL-2.0)
Original file line number Diff line number Diff line change @@ -429,7 +429,7 @@ let resolve_host host port =
429429 Unix. getaddrinfo host (string_of_int port) [AI_SOCKTYPE SOCK_STREAM ]
430430 with
431431 | [] -> raise Not_found
432- | l -> l
432+ | l -> List. rev l
433433
434434let add_host_header ?(force = false ) headers host port =
435435 try
You can’t perform that action at this time.
0 commit comments