mirror of
https://github.com/simh/simh.git
synced 2026-01-11 23:52:58 +00:00
SCP: Add missing console receive debug for telnet connect console
This commit is contained in:
parent
1cffbd5706
commit
b0dcd191bb
@ -2897,8 +2897,10 @@ if (!sim_rem_master_mode) {
|
||||
}
|
||||
}
|
||||
tmxr_poll_rx (&sim_con_tmxr); /* poll for input */
|
||||
if ((c = (t_stat)tmxr_getc_ln (&sim_con_ldsc))) /* any char? */
|
||||
if ((c = (t_stat)tmxr_getc_ln (&sim_con_ldsc))) { /* any char? */
|
||||
sim_debug (DBG_RCV, &sim_con_telnet, "sim_poll_kbd() tmxr_getc_ln() returning: '%c' (0x%02X)\n", sim_isprint (c & 0xFF) ? c & 0xFF : '.', c);
|
||||
return (c & (SCPE_BREAK | 0377)) | SCPE_KFLAG;
|
||||
}
|
||||
return SCPE_OK;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user