1 #ifndef IPALLOC_H
2 #define IPALLOC_H
3 
4 #include "ip.h"
5 
6 struct ip_mx { struct ip_address ip; int pref; } ;
7 
8 #include "gen_alloc.h"
9 
10 GEN_ALLOC_typedef(ipalloc,struct ip_mx,ix,len,a)
11 extern int ipalloc_readyplus();
12 extern int ipalloc_append();
13 
14 #endif
15