diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2015-12-12 17:16:57 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2015-12-12 17:16:57 +0000 |
commit | 63f2a531200dc4803a1caf38adfcfa143d0601b9 (patch) | |
tree | 49a8da56b7fc1402966a5b7bc4ff8d4d074ef0c7 /usr.sbin/smtpd/smtpd.h | |
parent | af1a86cc50219e7aa1749890716a412204c3ca23 (diff) |
allow overriding the default cipher-suite
ok jung@, sunil@, millert@
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index 3d0efbe995d..31c7b36e6f7 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.505 2015/12/12 12:22:26 gilles Exp $ */ +/* $OpenBSD: smtpd.h,v 1.506 2015/12/12 17:16:56 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -625,6 +625,8 @@ struct smtpd { uint32_t filtermask; char sc_enqueue_filter[PATH_MAX]; + + char *sc_tls_ciphers; }; #define TRACE_DEBUG 0x0001 @@ -1398,7 +1400,7 @@ int fork_proc_backend(const char *, const char *, const char *); /* ssl_smtpd.c */ -void *ssl_mta_init(void *, char *, off_t); +void *ssl_mta_init(void *, char *, off_t, const char *); void *ssl_smtp_init(void *, void *, int); |