diff options
author | John Denker <jsd@av8n.com> | 2016-01-01 11:15:35 -0700 |
---|---|---|
committer | John Denker <jsd@av8n.com> | 2016-01-01 16:33:29 -0800 |
commit | a16bea1ca0aa3ef44919fbe045b9040874fd8628 (patch) | |
tree | 99ac443b96f8b89f8a480bb378b619d18e8cfc31 /ipalloc.h | |
parent | 4dabcdf185f53439af8fdf71bd2da7317336bcf0 (diff) |
the big starttls patch
Diffstat (limited to 'ipalloc.h')
-rw-r--r-- | ipalloc.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -3,7 +3,15 @@ #include "ip.h" +#ifdef TLS +# define IX_FQDN 1 +#endif + +#ifdef IX_FQDN +struct ip_mx { struct ip_address ip; int pref; char *fqdn; } ; +#else struct ip_mx { struct ip_address ip; int pref; } ; +#endif #include "gen_alloc.h" |