Lines Matching defs:Chan
1 typedef struct Chan Chan; typedef
11 struct Chan struct
13 int chan; /* fd request came in on */
14 QLock rlock, wlock; /* lock for reading/writing messages on chan */
15 int type;
16 int flags;
17 long whotime;
18 File* flist; /* base of file structures */
19 Lock flock; /* manipulate flist */
20 RWLock reflock; /* lock for Tflush */
21 int msize; /* version */
22 int authed; /* someone other than ``none'' has authed */
25 uchar chal[8];
26 uchar rchal[8];
27 int idoffset;
51 Chan *chan; /* console channel */ argument