diff options
author | djm@openbsd.org <djm@openbsd.org> | 2017-08-30 03:59:08 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2017-09-04 09:38:57 +1000 |
commit | 71e5a536ec815d542b199f2ae6d646c0db9f1b58 (patch) | |
tree | e5b03199a74b43fa69af7a047b2480a132d69e80 /channels.h | |
parent | 6227fe5b362239c872b91bbdee4bf63cf85aebc5 (diff) |
upstream commit
pass packet state down to some of the channels function
(more to come...); ok markus@
Upstream-ID: d8ce7a94f4059d7ac1e01fb0eb01de0c4b36c81b
Diffstat (limited to 'channels.h')
-rw-r--r-- | channels.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/channels.h b/channels.h index 36e5363aa..5ecb4d7c0 100644 --- a/channels.h +++ b/channels.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: channels.h,v 1.126 2017/05/30 14:23:52 markus Exp $ */ | 1 | /* $OpenBSD: channels.h,v 1.127 2017/08/30 03:59:08 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -249,9 +249,9 @@ int channel_input_status_confirm(int, u_int32_t, struct ssh *); | |||
249 | 249 | ||
250 | /* file descriptor handling (read/write) */ | 250 | /* file descriptor handling (read/write) */ |
251 | 251 | ||
252 | void channel_prepare_select(fd_set **, fd_set **, int *, u_int*, | 252 | void channel_prepare_select(struct ssh *, fd_set **, fd_set **, int *, |
253 | time_t*, int); | 253 | u_int*, time_t*); |
254 | void channel_after_select(fd_set *, fd_set *); | 254 | void channel_after_select(struct ssh *, fd_set *, fd_set *); |
255 | void channel_output_poll(void); | 255 | void channel_output_poll(void); |
256 | 256 | ||
257 | int channel_not_very_much_buffered_data(void); | 257 | int channel_not_very_much_buffered_data(void); |