blob: 6626ecc21934273091767fc7b6e5fffc576b03f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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) int ipalloc_readyplus();
int ipalloc_append();
#endif
|