Lines Matching refs:nfrontp
69 if (nfrontp - nbackp) {
203 #define wewant(p) ((nfrontp > p) && ((*p&0xff) == IAC) && \
204 (nfrontp > p+1) && ((*(p+1)&0xff) != EC) && ((*(p+1)&0xff) != EL))
224 while ((thisitem != NULL) && (nfrontp > thisitem)) {
230 next = nextitem(next, nfrontp);
231 } while ((next != NULL) && wewant(next) && (nfrontp > next));
233 next = nfrontp;
240 thisitem = nextitem(thisitem, nfrontp);
245 nfrontp = good; /* next byte to be sent */
259 if ((n = nfrontp - nbackp) > 0) {
262 n = nfrontp - nbackp; /* re-compute count */
267 if (nfrontp - s > 0) {
268 (*encrypt_output)((unsigned char *)s, nfrontp - s);
269 nclearto = nfrontp;
310 if (nbackp == nfrontp) {
311 nbackp = nfrontp = netobuf;
334 if ((&netobuf[BUFSIZ] - nfrontp) < len) {
339 memmove(nfrontp, ptr, len);
340 nfrontp += len;
1065 if ((&netobuf[BUFSIZ] - nfrontp) < 80) {