diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2018-07-09 21:53:46 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2018-07-09 21:53:46 +0000 |
commit | 9a622a3904524796fd6a25453a0026ee13af6a62 (patch) | |
tree | 231b740eae131b899aa96637fc05b5b5d229a037 /usr.bin/ssh/monitor.h | |
parent | b9542799fc38cf1479c204486c8fd4b59af12737 (diff) |
sshd: switch monitor to sshbuf API; lots of help & ok djm@
Diffstat (limited to 'usr.bin/ssh/monitor.h')
-rw-r--r-- | usr.bin/ssh/monitor.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/monitor.h b/usr.bin/ssh/monitor.h index 5350770e7f9..16ed2401e20 100644 --- a/usr.bin/ssh/monitor.h +++ b/usr.bin/ssh/monitor.h @@ -1,4 +1,4 @@ -/* $OpenBSD: monitor.h,v 1.20 2016/09/28 16:33:07 djm Exp $ */ +/* $OpenBSD: monitor.h,v 1.21 2018/07/09 21:53:45 markus Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> @@ -78,8 +78,8 @@ struct mon_table; int monitor_read(struct monitor*, struct mon_table *, struct mon_table **); /* Prototypes for request sending and receiving */ -void mm_request_send(int, enum monitor_reqtype, Buffer *); -void mm_request_receive(int, Buffer *); -void mm_request_receive_expect(int, enum monitor_reqtype, Buffer *); +void mm_request_send(int, enum monitor_reqtype, struct sshbuf *); +void mm_request_receive(int, struct sshbuf *); +void mm_request_receive_expect(int, enum monitor_reqtype, struct sshbuf *); #endif /* _MONITOR_H_ */ |