Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/dnsres/dnsres.c

    r5a324d99 rcd18cd1  
    3636#include <inet/addr.h>
    3737#include <inet/dnsr.h>
     38#include <net/socket_codes.h>
    3839#include <stdio.h>
    3940#include <stdlib.h>
     
    5354        }
    5455       
    55         uint16_t ver;
     56        uint16_t af;
    5657        char *hname;
    5758       
     
    6263                }
    6364               
    64                 ver = ip_v4;
     65                af = AF_INET;
    6566                hname = argv[2];
    6667        } else if (str_cmp(argv[1], "-6") == 0) {
     
    7071                }
    7172               
    72                 ver = ip_v6;
     73                af = AF_INET6;
    7374                hname = argv[2];
    7475        } else {
    75                 ver = ip_any;
     76                af = 0;
    7677                hname = argv[1];
    7778        }
    7879       
    7980        dnsr_hostinfo_t *hinfo;
    80         int rc = dnsr_name2host(hname, &hinfo, ver);
     81        int rc = dnsr_name2host(hname, &hinfo, af);
    8182        if (rc != EOK) {
    8283                printf("%s: Error resolving '%s'.\n", NAME, hname);
Note: See TracChangeset for help on using the changeset viewer.