Home
last modified time | relevance | path

Searched refs:datbuf (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Din.rlogind.c1579 struct strbuf ctlbuf, datbuf; in readstream() local
1588 (void) memset(&datbuf, 0, sizeof (datbuf)); in readstream()
1592 datbuf.buf = buf; in readstream()
1593 datbuf.maxlen = size; in readstream()
1609 datbuf.buf = buf + nbytes; in readstream()
1611 datbuf.maxlen = bufsize - nbytes; in readstream()
1612 ret = getmsg(fd, &ctlbuf, &datbuf, &flags); in readstream()
1617 if ((ctlbuf.len == 0) && (datbuf.len == 0)) { in readstream()
1625 nbytes += datbuf.len; in readstream()
1626 datbuf.buf += datbuf.len; in readstream()
H A Din.telnetd.c4542 struct strbuf ctlbuf, datbuf; in readstream() local
4549 (void) memset((char *)&datbuf, 0, sizeof (datbuf)); in readstream()
4569 datbuf.buf = buf + offset; in readstream()
4570 datbuf.maxlen = netibufsize; in readstream()
4571 ret = getmsg(fd, &ctlbuf, &datbuf, &flags); in readstream()
4578 return (datbuf.len); in readstream()