-
Notifications
You must be signed in to change notification settings - Fork 26
/
ptr.c
47 lines (39 loc) · 1014 Bytes
/
ptr.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
/*
* Part of DNS zone file validator `validns`.
*
* Copyright 2011-2014 Anton Berezin <[email protected]>
* Modified BSD license.
* (See LICENSE file in the distribution.)
*
*/
#include <sys/types.h>
#include <stdio.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 *ptr_parse(char *name, long ttl, int type, char *s)
{
struct rr_ptr *rr = getmem(sizeof(*rr));
rr->ptrdname = extract_name(&s, "name server domain name", 0);
if (!rr->ptrdname)
return NULL;
if (*s) {
return bitch("garbage after valid PTR data");
}
return store_record(type, name, ttl, rr);
}
static char* ptr_human(struct rr *rrv)
{
RRCAST(ptr);
return rr->ptrdname;
}
static struct binary_data ptr_wirerdata(struct rr *rrv)
{
RRCAST(ptr);
return name2wire_name(rr->ptrdname);
}
struct rr_methods ptr_methods = { ptr_parse, ptr_human, ptr_wirerdata, NULL, NULL };