Symbol: TELOPT_BINARY
headers/compatibility/bsd/arpa/telnet.h
152
#define TELOPT_FIRST TELOPT_BINARY
src/bin/network/telnet/commands.c
567
if (my_want_state_is_will(TELOPT_BINARY) &&
src/bin/network/telnet/commands.c
568
my_want_state_is_do(TELOPT_BINARY)) {
src/bin/network/telnet/commands.c
570
} else if (my_want_state_is_wont(TELOPT_BINARY) &&
src/bin/network/telnet/commands.c
571
my_want_state_is_dont(TELOPT_BINARY)) {
src/bin/network/telnet/commands.c
578
if (my_want_state_is_will(TELOPT_BINARY) &&
src/bin/network/telnet/commands.c
579
my_want_state_is_do(TELOPT_BINARY)) {
src/bin/network/telnet/commands.c
586
if (my_want_state_is_wont(TELOPT_BINARY) &&
src/bin/network/telnet/commands.c
587
my_want_state_is_dont(TELOPT_BINARY)) {
src/bin/network/telnet/commands.c
603
val = my_want_state_is_do(TELOPT_BINARY) ? 0 : 1;
src/bin/network/telnet/commands.c
606
if (my_want_state_is_do(TELOPT_BINARY)) {
src/bin/network/telnet/commands.c
613
if (my_want_state_is_dont(TELOPT_BINARY)) {
src/bin/network/telnet/commands.c
629
val = my_want_state_is_will(TELOPT_BINARY) ? 0 : 1;
src/bin/network/telnet/commands.c
632
if (my_want_state_is_will(TELOPT_BINARY)) {
src/bin/network/telnet/commands.c
639
if (my_want_state_is_wont(TELOPT_BINARY)) {
src/bin/network/telnet/telnet.c
1723
if ((c == '\r') && my_want_state_is_dont(TELOPT_BINARY)) {
src/bin/network/telnet/telnet.c
2010
if (my_want_state_is_wont(TELOPT_BINARY)) {
src/bin/network/telnet/telnet.c
2078
my_want_state_is_will(TELOPT_BINARY));
src/bin/network/telnet/telnet.c
2424
send_do(TELOPT_BINARY, 1);
src/bin/network/telnet/telnet.c
2426
send_will(TELOPT_BINARY, 1);
src/bin/network/telnet/telnet.c
2433
send_dont(TELOPT_BINARY, 1);
src/bin/network/telnet/telnet.c
2435
send_wont(TELOPT_BINARY, 1);
src/bin/network/telnet/telnet.c
326
case TELOPT_BINARY:
src/bin/network/telnet/telnet.c
446
case TELOPT_BINARY: /* binary mode */
src/bin/network/telnet/telnet.c
69
#define strip(x) ((my_want_state_is_wont(TELOPT_BINARY)) ? ((x)&0x7f) : (x))
src/bin/network/telnet/terminal.c
195
if (my_want_state_is_will(TELOPT_BINARY))
src/bin/network/telnet/terminal.c
198
if (his_want_state_is_will(TELOPT_BINARY))
src/bin/network/telnetd/state.c
130
if ((c == '\r') && his_state_is_wont(TELOPT_BINARY)) {
src/bin/network/telnetd/state.c
467
case TELOPT_BINARY:
src/bin/network/telnetd/state.c
677
case TELOPT_BINARY:
src/bin/network/telnetd/state.c
847
case TELOPT_BINARY:
src/bin/network/telnetd/state.c
975
case TELOPT_BINARY:
src/bin/network/telnetd/telnetd.c
1155
if ((c == '\r') && (my_state_is_wont(TELOPT_BINARY))) {
src/bin/network/telnetd/termstat.c
168
if (his_want_state_is_wont(TELOPT_BINARY))
src/bin/network/telnetd/termstat.c
169
send_do(TELOPT_BINARY, 1);
src/bin/network/telnetd/termstat.c
171
if (his_want_state_is_will(TELOPT_BINARY))
src/bin/network/telnetd/termstat.c
172
send_dont(TELOPT_BINARY, 1);
src/bin/network/telnetd/termstat.c
176
if (my_want_state_is_wont(TELOPT_BINARY))
src/bin/network/telnetd/termstat.c
177
send_will(TELOPT_BINARY, 1);
src/bin/network/telnetd/termstat.c
179
if (my_want_state_is_will(TELOPT_BINARY))
src/bin/network/telnetd/termstat.c
180
send_wont(TELOPT_BINARY, 1);