diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2015-01-19 19:52:18 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2015-01-19 19:52:18 +0000 |
commit | 1da22017fad50a5debff34ca5ba203359d7420a4 (patch) | |
tree | 4e47036695ed2e1f94e9163b1f90fae01b8ab3df /usr.bin/ssh/monitor.h | |
parent | 20957e5171f56a45960571c5fc40b49a04b35dcb (diff) |
update packet.c & isolate, introduce struct ssh
a) switch packet.c to buffer api and isolate per-connection info into struct ssh
b) (de)serialization of the state is moved from monitor to packet.c
c) the old packet.c API is implemented in opacket.[ch]
d) compress.c/h is removed and integrated into packet.c
with and ok djm@
Diffstat (limited to 'usr.bin/ssh/monitor.h')
-rw-r--r-- | usr.bin/ssh/monitor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/monitor.h b/usr.bin/ssh/monitor.h index 2ef5063e820..0c4666629ca 100644 --- a/usr.bin/ssh/monitor.h +++ b/usr.bin/ssh/monitor.h @@ -1,4 +1,4 @@ -/* $OpenBSD: monitor.h,v 1.18 2014/01/29 06:18:35 djm Exp $ */ +/* $OpenBSD: monitor.h,v 1.19 2015/01/19 19:52:16 markus Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> @@ -66,7 +66,7 @@ struct monitor { int m_log_sendfd; struct mm_master *m_zback; struct mm_master *m_zlib; - struct Kex **m_pkex; + struct kex **m_pkex; pid_t m_pid; }; |