telopt             81 src/dps8/fnptelnet.c             if (event->neg.telopt == TELNET_TELOPT_BINARY)
telopt             85 src/dps8/fnptelnet.c             else if (event->neg.telopt == TELNET_TELOPT_SGA)
telopt             89 src/dps8/fnptelnet.c             else if (event->neg.telopt == TELNET_TELOPT_ECHO)
telopt             93 src/dps8/fnptelnet.c             else if (event->neg.telopt == TELNET_TELOPT_EOR)
telopt            101 src/dps8/fnptelnet.c                 sim_printf ("evHandler DO %d\r\n", event->neg.telopt);
telopt            108 src/dps8/fnptelnet.c             sim_printf ("evHandler DONT %d\r\n", event->neg.telopt);
telopt            114 src/dps8/fnptelnet.c             if (event->neg.telopt == TELNET_TELOPT_BINARY)
telopt            118 src/dps8/fnptelnet.c             else if (event->neg.telopt == TELNET_TELOPT_TTYPE)
telopt            122 src/dps8/fnptelnet.c             else if (event->neg.telopt == TELNET_TELOPT_EOR)
telopt            128 src/dps8/fnptelnet.c                 if (event->neg.telopt != 3)
telopt            129 src/dps8/fnptelnet.c                   sim_printf ("evHandler WILL %d\r\n", event->neg.telopt);
telopt            136 src/dps8/fnptelnet.c             sim_printf ("evHandler WONT %d\r\n", event->neg.telopt);
telopt            227 src/dps8/fnptelnet.c     while (q->telopt != -1)
telopt            229 src/dps8/fnptelnet.c         telnet_negotiate (p, q->us, (unsigned char) q->telopt);
telopt             97 src/dps8/libtelnet.c         ev.neg.telopt = (opt);          \
telopt            145 src/dps8/libtelnet.c         unsigned char telopt;
telopt            210 src/dps8/libtelnet.c static __inline__ int _check_telopt(telnet_t *telnet, unsigned char telopt,
telopt            219 src/dps8/libtelnet.c         for (i = 0; telnet->telopts[i].telopt != -1; ++i) {
telopt            220 src/dps8/libtelnet.c                 if (telnet->telopts[i].telopt == telopt) {
telopt            236 src/dps8/libtelnet.c                                                 unsigned char telopt) {
telopt            242 src/dps8/libtelnet.c                 if (telnet->q[i].telopt == telopt) {
telopt            248 src/dps8/libtelnet.c         empty.telopt = telopt;
telopt            254 src/dps8/libtelnet.c static __inline__ void _set_rfc1143(telnet_t *telnet, unsigned char telopt,
telopt            261 src/dps8/libtelnet.c                 if (telnet->q[i].telopt == telopt) {
telopt            263 src/dps8/libtelnet.c                         if (telopt != TELNET_TELOPT_BINARY)
telopt            299 src/dps8/libtelnet.c        telnet->q[telnet->q_cnt].telopt = telopt;
telopt            306 src/dps8/libtelnet.c                                        unsigned char telopt) {
telopt            310 src/dps8/libtelnet.c         bytes[2] = telopt;
telopt            315 src/dps8/libtelnet.c static void _negotiate(telnet_t *telnet, unsigned char telopt) {
telopt            323 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_WILL, telopt);
telopt            326 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_WONT, telopt);
telopt            329 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_DO, telopt);
telopt            332 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_DONT, telopt);
telopt            339 src/dps8/libtelnet.c         q = _get_rfc1143(telnet, telopt);
telopt            347 src/dps8/libtelnet.c                         if (_check_telopt(telnet, telopt, 0)) {
telopt            348 src/dps8/libtelnet.c                                 _set_rfc1143(telnet, telopt, Q_US(q), Q_YES);
telopt            349 src/dps8/libtelnet.c                                 _send_negotiate(telnet, TELNET_DO, telopt);
telopt            350 src/dps8/libtelnet.c                                 NEGOTIATE_EVENT(telnet, TELNET_EV_WILL, telopt);
telopt            352 src/dps8/libtelnet.c                                 _send_negotiate(telnet, TELNET_DONT, telopt);
telopt            355 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_NO);
telopt            356 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_WONT, telopt);
telopt            361 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_YES);
telopt            366 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_YES);
telopt            367 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_WILL, telopt);
telopt            370 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTNO);
telopt            371 src/dps8/libtelnet.c                         _send_negotiate(telnet, TELNET_DONT, telopt);
telopt            372 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_WILL, telopt);
telopt            381 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_NO);
telopt            382 src/dps8/libtelnet.c                         _send_negotiate(telnet, TELNET_DONT, telopt);
telopt            383 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_WONT, telopt);
telopt            386 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_NO);
telopt            387 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_WONT, telopt);
telopt            390 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTYES);
telopt            391 src/dps8/libtelnet.c                         _send_negotiate(telnet, TELNET_DO, telopt);
telopt            392 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_WONT, telopt);
telopt            396 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_NO);
telopt            405 src/dps8/libtelnet.c                         if (_check_telopt(telnet, telopt, 1)) {
telopt            406 src/dps8/libtelnet.c                                 _set_rfc1143(telnet, telopt, Q_YES, Q_HIM(q));
telopt            407 src/dps8/libtelnet.c                                 _send_negotiate(telnet, TELNET_WILL, telopt);
telopt            408 src/dps8/libtelnet.c                                 NEGOTIATE_EVENT(telnet, TELNET_EV_DO, telopt);
telopt            410 src/dps8/libtelnet.c                                 _send_negotiate(telnet, TELNET_WONT, telopt);
telopt            413 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_NO, Q_HIM(q));
telopt            414 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_DONT, telopt);
telopt            419 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_YES, Q_HIM(q));
telopt            424 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_YES, Q_HIM(q));
telopt            425 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_DO, telopt);
telopt            428 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_WANTNO, Q_HIM(q));
telopt            429 src/dps8/libtelnet.c                         _send_negotiate(telnet, TELNET_WONT, telopt);
telopt            430 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_DO, telopt);
telopt            439 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_NO, Q_HIM(q));
telopt            440 src/dps8/libtelnet.c                         _send_negotiate(telnet, TELNET_WONT, telopt);
telopt            441 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_DONT, telopt);
telopt            444 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_NO, Q_HIM(q));
telopt            445 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_DONT, telopt);
telopt            448 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_WANTYES, Q_HIM(q));
telopt            449 src/dps8/libtelnet.c                         _send_negotiate(telnet, TELNET_WILL, telopt);
telopt            450 src/dps8/libtelnet.c                         NEGOTIATE_EVENT(telnet, TELNET_EV_DONT, telopt);
telopt            454 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_NO, Q_HIM(q));
telopt            675 src/dps8/libtelnet.c         ev.sub.telopt = telnet->sb_telopt;
telopt            984 src/dps8/libtelnet.c                       unsigned char telopt) {
telopt            992 src/dps8/libtelnet.c                 bytes[2] = telopt;
telopt            998 src/dps8/libtelnet.c         q = _get_rfc1143(telnet, telopt);
telopt           1005 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_WANTYES, Q_HIM(q));
telopt           1006 src/dps8/libtelnet.c                         _send_negotiate(telnet, TELNET_WILL, telopt);
telopt           1009 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_WANTNO_OP, Q_HIM(q));
telopt           1012 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_WANTYES, Q_HIM(q));
telopt           1021 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_WANTNO, Q_HIM(q));
telopt           1022 src/dps8/libtelnet.c                         _send_negotiate(telnet, TELNET_WONT, telopt);
telopt           1025 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_WANTYES_OP, Q_HIM(q));
telopt           1028 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_WANTNO, Q_HIM(q));
telopt           1037 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTYES);
telopt           1038 src/dps8/libtelnet.c                         _send_negotiate(telnet, TELNET_DO, telopt);
telopt           1041 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTNO_OP);
telopt           1044 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTYES);
telopt           1053 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTNO);
telopt           1054 src/dps8/libtelnet.c                         _send_negotiate(telnet, TELNET_DONT, telopt);
telopt           1057 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTYES_OP);
telopt           1060 src/dps8/libtelnet.c                         _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTNO);
telopt           1136 src/dps8/libtelnet.c void telnet_begin_sb(telnet_t *telnet, unsigned char telopt) {
telopt           1140 src/dps8/libtelnet.c         sb[2] = telopt;
telopt            291 src/dps8/libtelnet.h                 unsigned char telopt;           /* option being negotiated */
telopt            301 src/dps8/libtelnet.h                 unsigned char telopt;           /* option code for negotiation */
telopt            343 src/dps8/libtelnet.h         short telopt;      /* one of the TELOPT codes or -1 */
telopt            450 src/dps8/libtelnet.h                             unsigned char telopt);
telopt            451 src/dps8/uvutil.c             if (event->neg.telopt == TELNET_TELOPT_BINARY)
telopt            455 src/dps8/uvutil.c             else if (event->neg.telopt == TELNET_TELOPT_SGA)
telopt            459 src/dps8/uvutil.c             else if (event->neg.telopt == TELNET_TELOPT_ECHO)
telopt            465 src/dps8/uvutil.c                 sim_printf ("evHandler DO %d\r\n", event->neg.telopt);
telopt            472 src/dps8/uvutil.c             sim_printf ("evHandler DONT %d\r\n", event->neg.telopt);
telopt            478 src/dps8/uvutil.c             if (event->neg.telopt != 3)
telopt            479 src/dps8/uvutil.c               sim_printf ("evHandler WILL %d\r\n", event->neg.telopt);
telopt            485 src/dps8/uvutil.c             sim_printf ("evHandler WONT %d\r\n", event->neg.telopt);
telopt            536 src/dps8/uvutil.c     while (q->telopt != -1)
telopt            538 src/dps8/uvutil.c         telnet_negotiate (p, q->us, (unsigned char) q->telopt);