summaryrefslogtreecommitdiffstats
path: root/ipalloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'ipalloc.h')
-rw-r--r--ipalloc.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/ipalloc.h b/ipalloc.h
new file mode 100644
index 0000000..ad61475
--- /dev/null
+++ b/ipalloc.h
@@ -0,0 +1,14 @@
1#ifndef IPALLOC_H
2#define IPALLOC_H
3
4#include "ip.h"
5
6struct ip_mx { struct ip_address ip; int pref; } ;
7
8#include "gen_alloc.h"
9
10GEN_ALLOC_typedef(ipalloc,struct ip_mx,ix,len,a)
11extern int ipalloc_readyplus();
12extern int ipalloc_append();
13
14#endif