summaryrefslogtreecommitdiff
path: root/testsuite/tests/lib-unix/common/gethostbyaddr.ml
blob: a8ea1cf8d4542306b9c8f077d348273fd61889a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
(* TEST
* hasunix
include unix
** bytecode
** native
*)

(* Checks that gethostbyaddr supports both IPv4 and IPv6 (see #11461) *)
let check a ty =
  match Unix.inet_addr_of_string a with
  | exception (Failure _) ->
      (* IPv6 addresses not supported on this platform, just ignore *)
      ()
  | addr ->
      match Unix.gethostbyaddr addr with
      | exception Not_found ->
          (* Name resolver badly configured? (observed on OmniOS).
             Just ignore *)
          ()
      | host ->
          assert (host.Unix.h_addrtype = ty)

let () =
  check "127.0.0.1" Unix.PF_INET;
  check "::1" Unix.PF_INET6;
  print_endline "OK"