forked from tobez/validns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
a.c
54 lines (45 loc) · 1.12 KB
/
a.c
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* Part of DNS zone file validator `validns`.
*
* Copyright 2011, Anton Berezin <[email protected]>
* Modified BSD license.
* (See LICENSE file in the distribution.)
*
*/
#include <sys/types.h>
#include <stdio.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "common.h"
#include "textparse.h"
#include "mempool.h"
#include "carp.h"
#include "rr.h"
static struct rr *a_parse(char *name, long ttl, int type, char *s)
{
struct rr_a *rr = getmem(sizeof(*rr));
if (extract_ipv4(&s, "IPv4 address", &rr->address) <= 0)
return NULL;
if (*s) {
return bitch("garbage after valid A data");
}
return store_record(type, name, ttl, rr);
}
static char* a_human(struct rr *rrv)
{
struct rr_a *rr = (struct rr_a *)rrv;
char s[1024];
if (inet_ntop(AF_INET, &rr->address, s, 1024))
return quickstrdup_temp(s);
return "????";
}
static struct binary_data a_wirerdata(struct rr *rrv)
{
struct rr_a *rr = (struct rr_a *)rrv;
struct binary_data r;
r.length = sizeof(rr->address);
r.data = (void *)&rr->address;
return r;
}
struct rr_methods a_methods = { a_parse, a_human, a_wirerdata, NULL, NULL };