Home | History | Annotate | Download | only in slirp

Lines Matching refs:ttyp

85 ttystats(ttyp)
86 struct ttys *ttyp;
88 struct slirp_ifstats *is = &ttyp->ifstats;
99 lprint("Unit %d:\r\n", ttyp->unit);
102 ttyp->proto==PROTO_PPP?"PPP":
105 lprint(" %d baudrate\r\n", ttyp->baud);
106 lprint(" interface is %s\r\n", ttyp->up?"up":"down");
107 lprint(" using fd %d, guardian pid is %d\r\n", ttyp->fd, ttyp->pid);
109 lprint(" towrite is %d bytes\r\n", ttyp->towrite);
111 if (ttyp->zeros)
112 lprint(" %d zeros have been typed\r\n", ttyp->zeros);
113 else if (ttyp->ones)
114 lprint(" %d ones have been typed\r\n", ttyp->ones);
126 struct ttys *ttyp;
128 for (ttyp = ttys; ttyp; ttyp = ttyp->next)
129 ttystats(ttyp);
342 struct ttys *ttyp;
363 for (ttyp = ttys; ttyp; ttyp = ttyp->next)
364 tty_detached(ttyp, 1);