summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2018-10-04 00:10:11 +0000
committerDamien Miller <djm@mindrot.org>2018-10-04 10:44:49 +1000
commitf1dd179e122bdfdb7ca3072d9603607740efda05 (patch)
tree422eb37f82b6fd14e3f8f10668bc3cef8ea447e9 /channels.h
parent2d1428b11c8b6f616f070f2ecedce12328526944 (diff)
upstream: include a little more information about the status and
disposition of channel's extended (stderr) fd; makes debugging some things a bit easier. No behaviour change. OpenBSD-Commit-ID: 483eb6467dc7d5dbca8eb109c453e7a43075f7ce
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels.h b/channels.h
index 1aeafe94e..aa2a87c10 100644
--- a/channels.h
+++ b/channels.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: channels.h,v 1.131 2018/06/06 18:22:41 djm Exp $ */ 1/* $OpenBSD: channels.h,v 1.132 2018/10/04 00:10:11 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -285,6 +285,7 @@ void channel_output_poll(struct ssh *);
285int channel_not_very_much_buffered_data(struct ssh *); 285int channel_not_very_much_buffered_data(struct ssh *);
286void channel_close_all(struct ssh *); 286void channel_close_all(struct ssh *);
287int channel_still_open(struct ssh *); 287int channel_still_open(struct ssh *);
288const char *channel_format_extended_usage(const Channel *);
288char *channel_open_message(struct ssh *); 289char *channel_open_message(struct ssh *);
289int channel_find_open(struct ssh *); 290int channel_find_open(struct ssh *);
290 291