Lines Matching defs:slc_replyp
1352 unsigned char *slc_replyp;
1357 slc_replyp = slc_reply;
1358 *slc_replyp++ = IAC;
1359 *slc_replyp++ = SB;
1360 *slc_replyp++ = TELOPT_LINEMODE;
1361 *slc_replyp++ = LM_SLC;
1367 if ((size_t)(slc_replyp - slc_reply) + 6 > sizeof(slc_reply))
1369 if ((*slc_replyp++ = func) == IAC)
1370 *slc_replyp++ = IAC;
1371 if ((*slc_replyp++ = flags) == IAC)
1372 *slc_replyp++ = IAC;
1373 if ((*slc_replyp++ = (unsigned char)value) == IAC)
1374 *slc_replyp++ = IAC;
1382 len = slc_replyp - slc_reply;
1385 *slc_replyp++ = IAC;
1386 *slc_replyp++ = SE;
1389 ring_supply_data(&netoring, slc_reply, slc_replyp - slc_reply);
1390 printsub('>', &slc_reply[2], slc_replyp - slc_reply - 2);