blob: 6d8e137064905ae0a1aeb85f4b0c2a7c4286f397 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#include "substdio.h"
#include "subfd.h"
#include "stralloc.h"
#include "fmt.h"
#include "dns.h"
#include "dnsdoe.h"
#include "ip.h"
#include "ipalloc.h"
#include "now.h"
#include "exit.h"
char temp[IPFMT + FMT_ULONG];
stralloc sa = {0};
ipalloc ia = {0};
void main(argc,argv)
int argc;
char **argv;
{
int j;
unsigned long r;
if (!argv[1]) _exit(100);
if (!stralloc_copys(&sa,argv[1]))
{ substdio_putsflush(subfderr,"out of memory\n"); _exit(111); }
r = now() + getpid();
dns_init(0);
dnsdoe(dns_mxip(&ia,&sa,r));
for (j = 0;j < ia.len;++j)
{
substdio_put(subfdout,temp,ip_fmt(temp,&ia.ix[j].ip));
substdio_puts(subfdout," ");
substdio_put(subfdout,temp,fmt_ulong(temp,(unsigned long) ia.ix[j].pref));
substdio_putsflush(subfdout,"\n");
}
_exit(0);
}
|