summaryrefslogtreecommitdiff
path: root/src/dnstxt.c
blob: 385928e9b4efa6cd03a30ba133dd610e9e44ca54 (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
#include <unistd.h>
#include "buffer.h"
#include "stralloc.h"
#include "dnsresolv.h"
#include "dns.h"
#include "exit.h"
#include "logmsg.h"

#define WHO "dnstext"

stralloc sa = {0};
stralloc out = {0};

int main(int argc,char **argv)
{
  int r;

  if (!argv[1]) 
    logmsg(WHO,100,USAGE,"dnstxt fqdn");

  if (!stralloc_copys(&sa,argv[1]))
    logmsg(WHO,111,FATAL,"out of memory");

  DNS_INIT
  if ((r = dns_txt(&out,&sa)) < 0) _exit(1);
  if (r > 0) {
    buffer_put(buffer_1,out.s,out.len);
    buffer_putsflush(buffer_1,"\n");
  }
 
  _exit(0);
}