summaryrefslogtreecommitdiff
path: root/monitor.h
diff options
context:
space:
mode:
Diffstat (limited to 'monitor.h')
-rw-r--r--monitor.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/monitor.h b/monitor.h
index d68f67458..16047299f 100644
--- a/monitor.h
+++ b/monitor.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: monitor.h,v 1.20 2016/09/28 16:33:07 djm Exp $ */ 1/* $OpenBSD: monitor.h,v 1.21 2018/07/09 21:53:45 markus Exp $ */
2 2
3/* 3/*
4 * Copyright 2002 Niels Provos <provos@citi.umich.edu> 4 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
@@ -39,8 +39,6 @@ enum monitor_reqtype {
39 MONITOR_REQ_AUTHPASSWORD = 12, MONITOR_ANS_AUTHPASSWORD = 13, 39 MONITOR_REQ_AUTHPASSWORD = 12, MONITOR_ANS_AUTHPASSWORD = 13,
40 MONITOR_REQ_BSDAUTHQUERY = 14, MONITOR_ANS_BSDAUTHQUERY = 15, 40 MONITOR_REQ_BSDAUTHQUERY = 14, MONITOR_ANS_BSDAUTHQUERY = 15,
41 MONITOR_REQ_BSDAUTHRESPOND = 16, MONITOR_ANS_BSDAUTHRESPOND = 17, 41 MONITOR_REQ_BSDAUTHRESPOND = 16, MONITOR_ANS_BSDAUTHRESPOND = 17,
42 MONITOR_REQ_SKEYQUERY = 18, MONITOR_ANS_SKEYQUERY = 19,
43 MONITOR_REQ_SKEYRESPOND = 20, MONITOR_ANS_SKEYRESPOND = 21,
44 MONITOR_REQ_KEYALLOWED = 22, MONITOR_ANS_KEYALLOWED = 23, 42 MONITOR_REQ_KEYALLOWED = 22, MONITOR_ANS_KEYALLOWED = 23,
45 MONITOR_REQ_KEYVERIFY = 24, MONITOR_ANS_KEYVERIFY = 25, 43 MONITOR_REQ_KEYVERIFY = 24, MONITOR_ANS_KEYVERIFY = 25,
46 MONITOR_REQ_KEYEXPORT = 26, 44 MONITOR_REQ_KEYEXPORT = 26,
@@ -87,8 +85,8 @@ struct mon_table;
87int monitor_read(struct monitor*, struct mon_table *, struct mon_table **); 85int monitor_read(struct monitor*, struct mon_table *, struct mon_table **);
88 86
89/* Prototypes for request sending and receiving */ 87/* Prototypes for request sending and receiving */
90void mm_request_send(int, enum monitor_reqtype, Buffer *); 88void mm_request_send(int, enum monitor_reqtype, struct sshbuf *);
91void mm_request_receive(int, Buffer *); 89void mm_request_receive(int, struct sshbuf *);
92void mm_request_receive_expect(int, enum monitor_reqtype, Buffer *); 90void mm_request_receive_expect(int, enum monitor_reqtype, struct sshbuf *);
93 91
94#endif /* _MONITOR_H_ */ 92#endif /* _MONITOR_H_ */