notelnet          238 src/simh/sim_tmxr.c if (!lp->txbfd || lp->notelnet)                                   /* if not buffered telnet */
notelnet          338 src/simh/sim_tmxr.c if ((!lp->notelnet) || (sim_switches & SWMASK ('V'))) {
notelnet          390 src/simh/sim_tmxr.c if (lp->notelnet)
notelnet          671 src/simh/sim_tmxr.c     sprintf (growstring(&tptr, 33 + strlen (mp->port)), "%s%s", mp->port, mp->notelnet ? ";notelnet" : "");
notelnet          733 src/simh/sim_tmxr.c         sprintf (growstring(&tptr, 32 + strlen (lp->port)), ",%s%s", lp->port, ((lp->mp->notelnet != lp->notelnet) && (!lp->datagram)) ? (lp->notelnet ? ";notelnet" : ";telnet") : "");
notelnet          735 src/simh/sim_tmxr.c             sprintf (growstring(&tptr, 25 + strlen (lp->destination)), ",Connect=%s%s", lp->destination, ((lp->mp->notelnet != lp->notelnet) && (!lp->datagram)) ? (lp->notelnet ? ";notelnet" : ";telnet") : "");
notelnet          912 src/simh/sim_tmxr.c             lp->notelnet = mp->notelnet;                /* apply mux default telnet setting */
notelnet          913 src/simh/sim_tmxr.c             if (!lp->notelnet) {
notelnet         1039 src/simh/sim_tmxr.c                                 if (!lp->notelnet) {
notelnet         1199 src/simh/sim_tmxr.c             lp->notelnet = lp->mp->notelnet;            /* apply mux default telnet setting */
notelnet         1200 src/simh/sim_tmxr.c             if (!lp->notelnet) {
notelnet         1513 src/simh/sim_tmxr.c             if (!lp->txbfd || lp->notelnet)
notelnet         1527 src/simh/sim_tmxr.c         if (!lp->notelnet) {                            /* Are we looking for telnet interpretation? */
notelnet         1620 src/simh/sim_tmxr.c                             lp->notelnet = TRUE;                /* Temporarily disable so */
notelnet         1622 src/simh/sim_tmxr.c                             lp->notelnet = FALSE;
notelnet         1699 src/simh/sim_tmxr.c                             lp->notelnet = TRUE;                /* Temporarily disable so */
notelnet         1701 src/simh/sim_tmxr.c                             lp->notelnet = FALSE;
notelnet         1759 src/simh/sim_tmxr.c     (!lp->txbfd || lp->notelnet)) {
notelnet         1773 src/simh/sim_tmxr.c if ((lp->txbfd && !lp->notelnet) || (TXBUF_AVAIL(lp) > 1)) {/* room for char (+ IAC)? */
notelnet         1774 src/simh/sim_tmxr.c     if ((TN_IAC == (u_char) chr) && (!lp->notelnet))    /* char == IAC in telnet session? */
notelnet         2095 src/simh/sim_tmxr.c t_bool nolog, notelnet, listennotelnet, modem_control, loopback, datagram, packet;
notelnet         2121 src/simh/sim_tmxr.c     nolog = notelnet = listennotelnet = loopback = FALSE;
notelnet         2127 src/simh/sim_tmxr.c         notelnet = listennotelnet = mp->notelnet;
notelnet         2197 src/simh/sim_tmxr.c                 notelnet = datagram = TRUE;
notelnet         2275 src/simh/sim_tmxr.c                     notelnet = TRUE;
notelnet         2281 src/simh/sim_tmxr.c                             notelnet = FALSE;
notelnet         2446 src/simh/sim_tmxr.c             mp->notelnet = listennotelnet;                  /* save desired telnet behavior flag */
notelnet         2533 src/simh/sim_tmxr.c                     lp->notelnet = notelnet;
notelnet         2654 src/simh/sim_tmxr.c             if (listennotelnet != mp->notelnet)
notelnet         2655 src/simh/sim_tmxr.c                 lp->notelnet = listennotelnet;
notelnet         2657 src/simh/sim_tmxr.c                 lp->notelnet = mp->notelnet;
notelnet         2717 src/simh/sim_tmxr.c                     lp->notelnet = notelnet;
notelnet         2967 src/simh/sim_tmxr.c         if (mp->notelnet)
notelnet         2997 src/simh/sim_tmxr.c                 if (mp->notelnet != lp->notelnet)
notelnet         2998 src/simh/sim_tmxr.c                     fprintf (st, " - %stelnet", lp->notelnet ? "no" : "");
notelnet         3488 src/simh/sim_tmxr.c     fprintf (st, " %s\n", (lp->notelnet) ? "Telnet disabled (RAW data)" : "Telnet protocol");
notelnet         3578 src/simh/sim_tmxr.c     if (!lp->notelnet)
notelnet          135 src/simh/sim_tmxr.h     t_bool              notelnet;                       /* raw binary data (no telnet interpretation) */
notelnet          211 src/simh/sim_tmxr.h     t_bool              notelnet;                       /* default telnet capability for incoming connections */