chiark
/
gitweb
/
~mdw
/
qmail
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
qmail-smtpd: Read list of hosts allowed to relay from control/relayhosts
[qmail]
/
ipalloc.h
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