summaryrefslogtreecommitdiff
path: root/src/include/ipalloc.h
blob: 8100c117bfee5cb8cdcf3612aef296b823d2d89c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef IPALLOC_H
#define IPALLOC_H

#include "genalloc.h"
#include "ip.h"

#define NAME_LEN 256

struct ip_mx {
  unsigned short af;
  union {
    struct ip4_address ip4;
    struct ip6_address ip6;
  } addr;
  int pref;
  char mxh[NAME_LEN];
};

GEN_ALLOC_typedef(ipalloc, struct ip_mx, ix, len, a);
GEN_ALLOC_readyplus(ipalloc, struct ip_mx, ix, len, a, i, n, x, 22, ipalloc_readyplus);
GEN_ALLOC_append(ipalloc, struct ip_mx, ix, len, a, i, n, x, 22, ipalloc_readyplus, ipalloc_append);

#endif