#ifndef IPALLOC_H #define IPALLOC_H #include "ip.h" #include "genalloc.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