summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/channels.h
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>1999-10-28 21:26:10 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>1999-10-28 21:26:10 +0000
commitb6fee2518370c3bee38f62b53ef78f0bcb7d0e4d (patch)
treecc4a0ee7267f2fdf0c1be5a5b54611aceb73bdab /usr.bin/ssh/channels.h
parent6b6f52dc17b95c93e090a56a5a8c37d758e77c38 (diff)
remove broken x11 fix and document istate/ostate
Diffstat (limited to 'usr.bin/ssh/channels.h')
-rw-r--r--usr.bin/ssh/channels.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/ssh/channels.h b/usr.bin/ssh/channels.h
index 9cdf10f3111..3cb4d3eb051 100644
--- a/usr.bin/ssh/channels.h
+++ b/usr.bin/ssh/channels.h
@@ -1,4 +1,4 @@
-/* RCSID("$Id: channels.h,v 1.3 1999/10/17 16:56:09 markus Exp $"); */
+/* RCSID("$Id: channels.h,v 1.4 1999/10/28 21:26:09 markus Exp $"); */
#ifndef CHANNELS_H
#define CHANNELS_H
@@ -26,9 +26,8 @@ typedef struct Channel
int self; /* my own channel identifier */
int remote_id; /* channel identifier for remote peer */
/* peer can be reached over encrypted connection, via packet-sent */
- int istate;
- int ostate;
- int x11;
+ int istate; /* input from channel (state of receive half) */
+ int ostate; /* output to channel (state of transmit half) */
int sock; /* data socket, linked to this channel */
Buffer input; /* data read from socket, to be sent over encrypted connection */
Buffer output; /* data received over encrypted connection for send on socket */