Lines Matching defs:Channel
60 struct Channel { struct
62 unsigned int index; /* the local channel index */
63 unsigned int remotechan;
64 unsigned int recvwindow, transwindow;
65 unsigned int recvdonelen;
66 unsigned int recvmaxpacket, transmaxpacket;
67 void* typedata; /* a pointer to type specific data */
68 int writefd; /* read from wire, written to insecure side */
69 int readfd; /* read from insecure size, written to wire */
70 int errfd; /* used like writefd or readfd, depending if it's client or server.
72 circbuffer *writebuf; /* data from the wire, for local consumption */
73 circbuffer *extrabuf; /* extended-data for the program - used like writebuf
97 int (*inithandler)(struct Channel*); argument