dnsresolve.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 13 Dec 2008 17:58:02 +0100
changeset 9 c3fecc82ade6
parent 8 96d16dfe787a
child 27 81a574d60c15
permissions -rw-r--r--
standard tags for git projects committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * test/demos/dnsresolve.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <arpa/inet.h>
#include <netdb.h>

int main (int argc, char **argv)
{
    struct hostent *he;
    char *ip;

    int i = 0;

    if (argc != 2) {
        fprintf (stderr, "Usage: %s hostname\n", argv[0]);
        exit (0);
    }

    he = gethostbyname (argv[1]);
    ip = NULL;

    if (he != NULL) {
        while (he->h_addr_list[i] != NULL) {
            ip = inet_ntoa (*((struct in_addr *)he->h_addr_list[i]));
            printf ("%s: %s\n", argv[1], ip);
            i++;
        }
    }

    return EXIT_SUCCESS;
}