summaryrefslogtreecommitdiff
path: root/monitor.h
diff options
context:
space:
mode:
Diffstat (limited to 'monitor.h')
-rw-r--r--monitor.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/monitor.h b/monitor.h
index 2d82b8b84..4c7955d7a 100644
--- a/monitor.h
+++ b/monitor.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: monitor.h,v 1.19 2015/01/19 19:52:16 markus Exp $ */ 1/* $OpenBSD: monitor.h,v 1.20 2016/09/28 16:33:07 djm Exp $ */
2 2
3/* 3/*
4 * Copyright 2002 Niels Provos <provos@citi.umich.edu> 4 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
@@ -72,21 +72,17 @@ enum monitor_reqtype {
72 72
73}; 73};
74 74
75struct mm_master;
76struct monitor { 75struct monitor {
77 int m_recvfd; 76 int m_recvfd;
78 int m_sendfd; 77 int m_sendfd;
79 int m_log_recvfd; 78 int m_log_recvfd;
80 int m_log_sendfd; 79 int m_log_sendfd;
81 struct mm_master *m_zback;
82 struct mm_master *m_zlib;
83 struct kex **m_pkex; 80 struct kex **m_pkex;
84 pid_t m_pid; 81 pid_t m_pid;
85}; 82};
86 83
87struct monitor *monitor_init(void); 84struct monitor *monitor_init(void);
88void monitor_reinit(struct monitor *); 85void monitor_reinit(struct monitor *);
89void monitor_sync(struct monitor *);
90 86
91struct Authctxt; 87struct Authctxt;
92void monitor_child_preauth(struct Authctxt *, struct monitor *); 88void monitor_child_preauth(struct Authctxt *, struct monitor *);