summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/smtpd.h
diff options
context:
space:
mode:
authorEric Faurot <eric@cvs.openbsd.org>2021-04-09 16:43:44 +0000
committerEric Faurot <eric@cvs.openbsd.org>2021-04-09 16:43:44 +0000
commitb62858496a2f725103703c9f41d3acb98e90e870 (patch)
treede027548b10c4bde30a8d973777591d5b834bca2 /usr.sbin/smtpd/smtpd.h
parenta19e7027d8e0c24ac518d03f2187af8fcee84cfa (diff)
allow to specify tls ciphers and protocols on listeners
ok tb@
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r--usr.sbin/smtpd/smtpd.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h
index d36e33285e5..b6556ac0188 100644
--- a/usr.sbin/smtpd/smtpd.h
+++ b/usr.sbin/smtpd/smtpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: smtpd.h,v 1.664 2021/03/31 19:09:19 eric Exp $ */
+/* $OpenBSD: smtpd.h,v 1.665 2021/04/09 16:43:43 eric Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -543,6 +543,8 @@ struct listener {
int local; /* there must be a better way */
+ char *tls_protocols;
+ char *tls_ciphers;
struct tls *tls;
struct pki **pki;
int pkicount;