1 /* $NetBSD: arpaname.c,v 1.4 2014/12/10 04:37:54 christos Exp $ */
4 * Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16 * PERFORMANCE OF THIS SOFTWARE.
19 /* Id: arpaname.c,v 1.4 2009/10/27 03:05:33 marka Exp */
27 #define UNUSED(x) (void)&(x)
30 main(int argc
, char *argv
[]) {
31 unsigned char buf
[16];
37 if (inet_pton(AF_INET6
, argv
[1], buf
) == 1) {
38 for (i
= 15; i
>= 0; i
--)
39 fprintf(stdout
, "%X.%X.", buf
[i
] & 0xf,
41 fprintf(stdout
, "IP6.ARPA\n");
45 if (inet_pton(AF_INET
, argv
[1], buf
) == 1) {
46 fprintf(stdout
, "%u.%u.%u.%u.IN-ADDR.ARPA\n",
47 buf
[3], buf
[2], buf
[1], buf
[0]);
54 return(ferror(stdout
));