diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2019-12-13 08:14:52 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2019-12-13 08:14:52 +0000 |
commit | 1528b15a54b4b1eac9cb2ca490f83c22c76c9133 (patch) | |
tree | ffaf966ba2c0c2ae15e714e6fe140c9d08a3888b /usr.sbin/smtpd | |
parent | 8586cba9e4b0407da2c831c3e6969fd4b7e1b785 (diff) |
add IMSG_REPORT_SMTP_LINK_GREETING, IMSG_REPORT_SMTP_LINK_IDENTIFY and
IMSG_REPORT_SMTP_LINK_AUTH to imsg_to_str()
Diffstat (limited to 'usr.sbin/smtpd')
-rw-r--r-- | usr.sbin/smtpd/smtpd.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.c b/usr.sbin/smtpd/smtpd.c index 84e9b6d9081..e2358b9e1d2 100644 --- a/usr.sbin/smtpd/smtpd.c +++ b/usr.sbin/smtpd/smtpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.c,v 1.326 2019/12/12 22:10:47 gilles Exp $ */ +/* $OpenBSD: smtpd.c,v 1.327 2019/12/13 08:14:51 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -2074,6 +2074,9 @@ imsg_to_str(int type) CASE(IMSG_REPORT_SMTP_LINK_CONNECT); CASE(IMSG_REPORT_SMTP_LINK_DISCONNECT); CASE(IMSG_REPORT_SMTP_LINK_TLS); + CASE(IMSG_REPORT_SMTP_LINK_GREETING); + CASE(IMSG_REPORT_SMTP_LINK_IDENTIFY); + CASE(IMSG_REPORT_SMTP_LINK_AUTH); CASE(IMSG_REPORT_SMTP_TX_RESET); CASE(IMSG_REPORT_SMTP_TX_BEGIN); |