aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2013-12-03 16:43:17 +0100
committerHans Nilsson <[email protected]>2013-12-03 16:43:17 +0100
commitd54105dc7549bc091e50737be91550d2892233a8 (patch)
treec1b45cd7ebf6abdb9f1728aa8d1053fad990dc0d /lib/ssh
parentd3abd236672cff39b371fe72f5412ae1b704c6df (diff)
parent9f997aadc86eb5620beb0d92777a8fdd1b95ab1b (diff)
downloadotp-d54105dc7549bc091e50737be91550d2892233a8.tar.gz
otp-d54105dc7549bc091e50737be91550d2892233a8.tar.bz2
otp-d54105dc7549bc091e50737be91550d2892233a8.zip
Merge branch 'maint'
Diffstat (limited to 'lib/ssh')
-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) ->