...
This commit is contained in:
parent
198dd52700
commit
d452a5cdce
@ -1181,7 +1181,7 @@ START_ALLOW_CASE_RANGE
|
||||
END_ALLOW_CASE_RANGE
|
||||
if (screen->parser_buf_pos > 0 && screen->parser_buf[screen->parser_buf_pos-1] == ESC) {
|
||||
if (ch == '\\') { screen->parser_buf_pos--; return true; }
|
||||
REPORT_ERROR("DCS sequence contained ESC without trailing \\ ignoring the sequence");
|
||||
REPORT_ERROR("DCS sequence contained ESC without trailing \\ at pos: %u ignoring the sequence", screen->parser_buf_pos);
|
||||
SET_STATE(ESC); return false;
|
||||
}
|
||||
if (screen->parser_buf_pos >= PARSER_BUF_SZ - 1) {
|
||||
|
||||
@ -96,15 +96,17 @@ class Callbacks:
|
||||
|
||||
def handle_remote_ssh(self, msg):
|
||||
from kittens.ssh.main import get_ssh_data
|
||||
for line in get_ssh_data(msg):
|
||||
self.pty.write_to_child(line)
|
||||
self.pty.process_input_from_child(timeout=0)
|
||||
if self.pty:
|
||||
for line in get_ssh_data(msg):
|
||||
self.pty.write_to_child(line)
|
||||
self.pty.process_input_from_child(timeout=0)
|
||||
|
||||
def handle_remote_echo(self, msg):
|
||||
from base64 import standard_b64decode
|
||||
data = standard_b64decode(msg)
|
||||
self.pty.write_to_child(data)
|
||||
self.pty.process_input_from_child(timeout=0)
|
||||
if self.pty:
|
||||
data = standard_b64decode(msg)
|
||||
self.pty.write_to_child(data)
|
||||
self.pty.process_input_from_child(timeout=0)
|
||||
|
||||
|
||||
def filled_line_buf(ynum=5, xnum=5, cursor=Cursor()):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user