aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd/smtpd.h
diff options
context:
space:
mode:
authorGilles Chehade <gilles@poolp.org>2017-02-13 09:31:58 +0100
committerGilles Chehade <gilles@poolp.org>2017-02-13 09:31:58 +0100
commit15633dac81ebaa4239f546479757b1968530e875 (patch)
tree590dbcd2eaf12145a3c1be9675f20bd5bc379942 /smtpd/smtpd.h
parentsync (diff)
downloadOpenSMTPD-15633dac81ebaa4239f546479757b1968530e875.tar.xz
OpenSMTPD-15633dac81ebaa4239f546479757b1968530e875.zip
sync with OpenBSDopensmtpd-201702130936
Diffstat (limited to 'smtpd/smtpd.h')
-rw-r--r--smtpd/smtpd.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/smtpd/smtpd.h b/smtpd/smtpd.h
index 46819c5e..e1872f43 100644
--- a/smtpd/smtpd.h
+++ b/smtpd/smtpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: smtpd.h,v 1.525 2016/11/25 09:21:21 gilles Exp $ */
+/* $OpenBSD: smtpd.h,v 1.529 2017/02/03 08:23:46 guenther Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -22,10 +22,12 @@
#define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
#endif
+#include <netinet/in.h>
+#include <event.h>
+
#include "smtpd-defines.h"
#include "smtpd-api.h"
#include "ioev.h"
-#include "iobuf.h"
#include "rfc2822.h"
@@ -1017,7 +1019,7 @@ struct msg {
extern enum smtp_proc_type smtpd_process;
-extern int verbose;
+extern int tracing;
extern int foreground_log;
extern int profiling;
@@ -1493,8 +1495,6 @@ void *xcalloc(size_t, size_t, const char *);
char *xstrdup(const char *, const char *);
void *xmemdup(const void *, size_t, const char *);
char *strip(char *);
-void iobuf_xinit(struct iobuf *, size_t, size_t, const char *);
-void iobuf_xfqueue(struct iobuf *, const char *, const char *, ...);
int io_xprint(struct io *, const char *);
int io_xprintf(struct io *, const char *, ...);
void log_envelope(const struct envelope *, const char *, const char *,