diff options
author | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-04-24 08:35:49 +0000 |
---|---|---|
committer | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-04-24 08:35:49 +0000 |
commit | 85652571c59acb452011f46c2ba57781afddf080 (patch) | |
tree | ea6d9695786d0d81745d170008289da5eb227013 /usr.sbin/smtpd/smtpd.h | |
parent | 8664ba2022ee21611a72b11fc6643473544f6f17 (diff) |
use same timeout at each session state, and make use of
bufferevent_settimeout instead of rolling our own; ok gilles@
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index de84519e215..a9b5456075c 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.102 2009/04/24 08:32:12 jacekm Exp $ */ +/* $OpenBSD: smtpd.h,v 1.103 2009/04/24 08:35:48 jacekm Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -602,7 +602,6 @@ struct session { char s_hostname[MAXHOSTNAMELEN]; struct event s_ev; struct bufferevent *s_bev; - struct event s_timeout; struct listener *s_l; struct smtpd *s_env; void *s_ssl; |