summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/monitor.h
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2011-06-17 21:44:32 +0000
committerDamien Miller <djm@cvs.openbsd.org>2011-06-17 21:44:32 +0000
commit0566c8314cadf5e07a9361187133ba4ed050c046 (patch)
tree0d399774c65114371997eeab58dfa65ba3875362 /usr.bin/ssh/monitor.h
parent1d8547a03a33fe393e9bb3f4fa25f8326192f2da (diff)
make the pre-auth privsep slave log via a socketpair shared with the
monitor rather than /var/empty/dev/log; ok dtucker@ deraadt@ markus@
Diffstat (limited to 'usr.bin/ssh/monitor.h')
-rw-r--r--usr.bin/ssh/monitor.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/monitor.h b/usr.bin/ssh/monitor.h
index 8fc39715d92..05eccf31e12 100644
--- a/usr.bin/ssh/monitor.h
+++ b/usr.bin/ssh/monitor.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: monitor.h,v 1.15 2008/11/04 08:22:13 djm Exp $ */
+/* $OpenBSD: monitor.h,v 1.16 2011/06/17 21:44:31 djm Exp $ */
/*
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
@@ -65,6 +65,8 @@ struct mm_master;
struct monitor {
int m_recvfd;
int m_sendfd;
+ int m_log_recvfd;
+ int m_log_sendfd;
struct mm_master *m_zback;
struct mm_master *m_zlib;
struct Kex **m_pkex;