aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_cli.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2013-11-29 15:32:12 +0100
committerHans Nilsson <[email protected]>2013-12-03 15:15:53 +0100
commit95d8bd7377401f663ab5419df02174a42eddea2e (patch)
treeeafae16b6835a5f9bd26cc9132ad4682acfb0e27 /lib/ssh/src/ssh_cli.erl
parent586345ae7c2d49203ff984ccf1e64cf99f3d5b73 (diff)
downloadotp-95d8bd7377401f663ab5419df02174a42eddea2e.tar.gz
otp-95d8bd7377401f663ab5419df02174a42eddea2e.tar.bz2
otp-95d8bd7377401f663ab5419df02174a42eddea2e.zip
ssh: Fix long cli delays. (Part of OTP-11339, OTP-10953)
A step in fixing the tickets.
Diffstat (limited to 'lib/ssh/src/ssh_cli.erl')
-rw-r--r--lib/ssh/src/ssh_cli.erl15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh_cli.erl b/lib/ssh/src/ssh_cli.erl
index 5cb1e133d3..2c8e515a14 100644
--- a/lib/ssh/src/ssh_cli.erl
+++ b/lib/ssh/src/ssh_cli.erl
@@ -161,6 +161,21 @@ handle_msg({ssh_channel_up, ChannelId, ConnectionHandler},
cm = ConnectionHandler} = State) ->
{ok, State};
+handle_msg({Group, set_unicode_state, _Arg}, State) ->
+ Group ! {self(), set_unicode_state, false},
+ {ok, State};
+
+handle_msg({Group, get_unicode_state}, State) ->
+ Group ! {self(), get_unicode_state, false},
+ {ok, State};
+
+handle_msg({Group, tty_geometry}, #state{group = Group,
+ pty = #ssh_pty{width=Width,
+ height=Height}
+ } = State) ->
+ Group ! {self(),tty_geometry,{Width,Height}},
+ {ok,State};
+
handle_msg({Group, Req}, #state{group = Group, buf = Buf, pty = Pty,
cm = ConnectionHandler,
channel = ChannelId} = State) ->