- 论坛徽章:
- 30
|
- --- ssh-3.1 -------------------------------------------------------------
- OTP-11329 Fix option user_interaction to work as expected. When
- password authentication is implemented with ssh
- keyboard-interactive method and the password is already
- supplied, so that we do not need to query user, then
- connections should succeed even though user_interaction
- option is set to false.
- OTP-11542 Added API functions ptty_alloc/3 and ptty_alloc/4, to
- allocate a pseudo tty.
- OTP-12157 Gracefully handle bad data from the client when expecting ssh
- version exchange.
- OTP-12168 When restarting an ssh daemon, that was stopped with
- ssh:stop_listner/ [1,2] new options given shall replace old
- ones.
- OTP-12180 Supports tar file creation on other media than file systems
- mounted on the local machine.
- The erl_tar api is extended with erl_tar:init/3 that enables
- usage of user provided media storage routines. A ssh-specific
- set of such routines is hidden in the new function
- ssh_sftp:open_tar/3 to simplify creating a tar archive on a
- remote ssh server.
- A chunked file reading option is added to erl_tar:add/3,4 to
- save memory on e.g small embedded systems. The size of the
- slices read from a file in that case can be specified.
- OTP-12185 Always send SSH_DISCONNECT protocol messages when peer sends
- corrupt messages.
- OTP-12194 The option parallel_login didn't work with the value true.
- All logins were serial.
- OTP-12200 Make sure the clean rule for ssh, ssl, eunit and otp_mibs
- actually removes generated files.
- OTP-12247 Fixes of login blocking after port scanning.
- OTP-12256 Improved Property Tests (Thanks to Thomas, John and Tobias at
- QuviQ)
- OTP-12277 Correct typo of renegotiate that could cause rekeying to fail
- OTP-12306 The {timeout, Timeout} option passed to
- ssh_sftp:start_channel was not applied to the early phases of
- the SSH protocol. This patch passes the Timeout through to
- ssh:connect. In case the timeout occurs during these phases,
- {error, timeout} is returned. (Thanks to Simon Cornish)
- OTP-12312 Hooks for funs that can change binaries sent to remote sites
- from erl_tar for renote tar file creation are added. See
- ssh_sftp:open_tar/3,4 for details. The hooks could also be
- used to read remote tar files that need transformation before
- file extraction.
- Those hooks are intended for encryption and decryption of tar
- files. Effort is put into memory, disk and network resource
- economy.
复制代码 |
|