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
  
     | 
    
      /*
 * Part of DNS zone file validator `validns`.
 *
 * Copyright 2011-2014 Anton Berezin <tobez@tobez.org>
 * 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 *mg_parse(char *name, long ttl, int type, char *s)
{
    struct rr_mg *rr = getmem(sizeof(*rr));
    rr->mgmname = extract_name(&s, "mgmname", 0);
    if (!rr->mgmname)
        return NULL;
    if (*s) {
        return bitch("garbage after valid MG data");
    }
    return store_record(type, name, ttl, rr);
}
static char* mg_human(struct rr *rrv)
{
    RRCAST(mg);
    return rr->mgmname;
}
static struct binary_data mg_wirerdata(struct rr *rrv)
{
    RRCAST(mg);
    return name2wire_name(rr->mgmname);
}
struct rr_methods mg_methods = { mg_parse, mg_human, mg_wirerdata, NULL, NULL };
 
     |