summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/channels.h b/channels.h
index 9794ef50d..608c774db 100644
--- a/channels.h
+++ b/channels.h
@@ -1,4 +1,4 @@
1/* RCSID("$Id: channels.h,v 1.1 1999/10/27 03:42:44 damien Exp $"); */ 1/* RCSID("$Id: channels.h,v 1.2 1999/10/30 01:39:56 damien Exp $"); */
2 2
3#ifndef CHANNELS_H 3#ifndef CHANNELS_H
4#define CHANNELS_H 4#define CHANNELS_H
@@ -26,9 +26,8 @@ typedef struct Channel
26 int self; /* my own channel identifier */ 26 int self; /* my own channel identifier */
27 int remote_id; /* channel identifier for remote peer */ 27 int remote_id; /* channel identifier for remote peer */
28 /* peer can be reached over encrypted connection, via packet-sent */ 28 /* peer can be reached over encrypted connection, via packet-sent */
29 int istate; 29 int istate; /* input from channel (state of receive half) */
30 int ostate; 30 int ostate; /* output to channel (state of transmit half) */
31 int x11;
32 int sock; /* data socket, linked to this channel */ 31 int sock; /* data socket, linked to this channel */
33 Buffer input; /* data read from socket, to be sent over encrypted connection */ 32 Buffer input; /* data read from socket, to be sent over encrypted connection */
34 Buffer output; /* data received over encrypted connection for send on socket */ 33 Buffer output; /* data received over encrypted connection for send on socket */