summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/smtpd.h
diff options
context:
space:
mode:
authorJacek Masiulaniec <jacekm@cvs.openbsd.org>2009-12-12 10:33:12 +0000
committerJacek Masiulaniec <jacekm@cvs.openbsd.org>2009-12-12 10:33:12 +0000
commit173db6f90670e33ca553f47f7b652265aee3a240 (patch)
treeb058a07cd10d9bc3337f633b76ea06e0db0be950 /usr.sbin/smtpd/smtpd.h
parent26ca1705c8c1bcff436db5b16871b448eef40ed9 (diff)
Simplify client_* api, mainly by making fatal conditions result in immediate
fatals instead of passing the error up (kills ~300 lines). Implement sending of the QUIT command which replaces crude close(2). tested by gilles@, todd@
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r--usr.sbin/smtpd/smtpd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h
index 137427e181e..43830fb1492 100644
--- a/usr.sbin/smtpd/smtpd.h
+++ b/usr.sbin/smtpd/smtpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: smtpd.h,v 1.159 2009/11/13 11:27:52 jacekm Exp $ */
+/* $OpenBSD: smtpd.h,v 1.160 2009/12/12 10:33:11 jacekm Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
@@ -793,7 +793,7 @@ struct mta_session {
int datafd;
struct event ev;
char *cert;
- void *smtp_state;
+ void *pcb;
};
/* aliases.c */