diff options
author | Ingela Anderton Andin <ingela@erlang.org> | 2014-10-30 15:43:52 +0100 |
---|---|---|
committer | Ingela Anderton Andin <ingela@erlang.org> | 2014-10-30 15:43:52 +0100 |
commit | 439e4b037bf7ea423cb6715bdd25dd39c31eeb7f (patch) | |
tree | 700aeab17ac8dce458fc93de61a829e8ea9c37c2 /lib/ssh/src/ssh_connect.hrl | |
parent | 4e969748e47566c974ce526ade50c34ab62e3b26 (diff) | |
parent | 1629794d4e120d94e360bb2d58485d8d8e1688ed (diff) | |
download | otp-439e4b037bf7ea423cb6715bdd25dd39c31eeb7f.tar.gz otp-439e4b037bf7ea423cb6715bdd25dd39c31eeb7f.tar.bz2 otp-439e4b037bf7ea423cb6715bdd25dd39c31eeb7f.zip |
Merge branch 'ia/ssh/pty-request/OTP-11542' into maint
* ia/ssh/pty-request/OTP-11542:
ssh: Add basic ptty_alloc tests
ssh: Add pty_alloc request to ssh:shell/[1,2,3]
ssh: Add ptty_alloc/[2,3]
Diffstat (limited to 'lib/ssh/src/ssh_connect.hrl')
-rw-r--r-- | lib/ssh/src/ssh_connect.hrl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh_connect.hrl b/lib/ssh/src/ssh_connect.hrl index 9307dbbad0..d14f7ce27d 100644 --- a/lib/ssh/src/ssh_connect.hrl +++ b/lib/ssh/src/ssh_connect.hrl @@ -165,6 +165,10 @@ recipient_channel }). +-define(TERMINAL_WIDTH, 80). +-define(TERMINAL_HEIGHT, 24). +-define(DEFAULT_TERMINAL, "vt100"). + -define(TTY_OP_END,0). %% Indicates end of options. -define(VINTR,1). %% Interrupt character; 255 if none. Similarly for the %% other characters. Not all of these characters are |