diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2019-08-10 16:07:03 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2019-08-10 16:07:03 +0000 |
commit | c906a272e1da644f97332c4f2240c268964b0076 (patch) | |
tree | 8e615889aa3f70f8b324d921ac86a04ac28c9fcc /usr.sbin/smtpd/smtpd.h | |
parent | 3196f2ca5606b4e9b739855e4c39032872d37455 (diff) |
this introduces experimental proxy v2 support which is fairly isolated to a
single proxy.c file, importing it to work in tree
initial work from Antoine Kaufmann <toni@famkaufmann.info>
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index 87ea12f2cff..9aab6dcd5cf 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.630 2019/08/10 13:38:01 gilles Exp $ */ +/* $OpenBSD: smtpd.h,v 1.631 2019/08/10 16:07:02 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -84,6 +84,7 @@ #define F_RECEIVEDAUTH 0x800 #define F_MASQUERADE 0x1000 #define F_FILTERED 0x2000 +#define F_PROXY 0x4000 #define RELAY_TLS_OPPORTUNISTIC 0 #define RELAY_TLS_STARTTLS 1 |