aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/doc
AgeCommit message (Collapse)Author
2015-06-01Update release notesErlang/OTP
2015-05-18Update release notesErlang/OTP
2015-05-13ssh: option for handling the SSH_MSG_DEBUG message's printoutsHans Nilsson
A fun could be given in the options that will be called whenever the SSH_MSG_DEBUG message arrives. This enables the user to format the printout or just discard it. The default is changed to not print the message. In RFC4253 printing is a SHOULD, but our new default is to protect logs from dos attacs.
2015-04-22Update release notesErlang/OTP
2015-04-21ssh: added id_string option for server and clientHans Nilsson
For limiting Banner Grabbing attempts.
2015-04-10Update release notesErlang/OTP
2015-04-07ssh: Option minimal_remote_max_packet_size and test casesHans Nilsson
2015-03-31Prepare releaseErlang/OTP
2015-01-19fix spellingMarcus Arendt
2015-01-13fix doc typos found by Rabbe FogelholmMarcus Arendt
2014-12-17ssh: Improve errorhandling in ssh_connection.erlIngela Anderton Andin
If a channel is closed by the peer while using a function with call semantics in ssh_connection.erl return {error, closed}. Document that the functions can return {error, timeout | closed} and not only ssh_request_status()
2014-12-09Prepare releaseErlang/OTP
2014-12-01ssh: Implements and tests erl_tar read from remote host.Hans Nilsson
2014-11-18ssh: Add ssh_sftp:open_tar/3,4 which opens a tar file at the server side of ↵Hans Nilsson
a channel. Depends on erl_tar.erl having the function erl_tar:init/3 defined.
2014-10-30Merge branch 'ia/ssh/pty-request/OTP-11542' into maintIngela Anderton Andin
* 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]
2014-10-23Update release notesErlang/OTP
2014-10-22ssh: Add ptty_alloc/[2,3]Ingela Anderton Andin
2014-10-13Update release notesErlang/OTP
2014-10-10ssh: Add option sftp_vsnIngela Anderton Andin
2014-09-29Prepare releaseErlang/OTP
2014-09-15Update release notesErlang/OTP
2014-09-03Merge branch 'arekinath/ssh/aes-ctr' into maintMarcus Arendt
* arekinath/ssh/aes-ctr: ssh: check if ssh client supports newer cipher- and MAC-algorithms SSH: only enable ciphers/MACs when they are available in crypto SSH: add ssh_to_openssh test for ciphers and macs SSH: documentation update for new algos SSH: add support for aes128-ctr and hmac-sha2-256
2014-08-22Update release notesErlang/OTP
2014-08-01SSH: documentation update for new algosAlex Wilson
2014-06-19Prepare releaseErlang/OTP
2014-06-11ssh: Handle inet and inet6 option correctlyIngela Anderton Andin
2014-05-27Merge branch 'maint-17' into maintIngela Anderton Andin
Conflicts: OTP_VERSION lib/ssh/test/ssh_basic_SUITE.erl lib/ssh/vsn.mk
2014-05-27Update release notesErlang/OTP
2014-05-26ssh: Add max_session parameter to ssh:daemonHans Nilsson
2014-04-24ssh: Doc change on max_session paramHans Nilsson
2014-04-24ssh: Add max_session parameter to ssh:daemonHans Nilsson
2014-04-07Update release notesErlang/OTP
2014-04-06Fix typo in authorized_keys filenameJosh Adams
2014-04-06Fix typo in SSH docsJosh Adams
2014-03-26ssh: added daemon option 'parallel_login', default falseHans Nilsson
2014-03-26ssh: Added option negotiation_timeout for ssh:daemonHans Nilsson
This option is for closing a connection where the client connects, but then do nothing except keeping server resources.
2014-02-14Merge branch 'weisslj/ssh-spec-doc-fixes'Henrik Nord
* weisslj/ssh-spec-doc-fixes: ssh: Fix dialyzer type specs and documentation OTP-11705
2014-01-2717.0 anchor and broken links fixesLukas Larsson
2014-01-27ssh: Fix dialyzer type specs and documentationJohannes Weißl
Similar to d9ebfb8. The wrong specs were leading to dialyzer warnings like this in our application since R16B03: The pattern 'ok' can never match the type {'error',_}. The pattern {'error', {'already_started', 'ssh'}} can never match the type 'ok'. The pattern {'error', _} can never match the type {'open_error',_,string(),string()}.
2014-01-21ssh: minor doc correction about unicodeHans Nilsson
2014-01-21ssh: Update documentationHans Nilsson
2013-12-10Merge tag 'OTP_R16B03'Magnus Lidén
The R16B03 release Conflicts: lib/sasl/vsn.mk
2013-12-09Prepare releaseOTP_R16B03Erlang/OTP
2013-11-14Merge remote-tracking branch 'upstream/maint'Ingela Anderton Andin
2013-11-13ssh: Logging fun and document enhancementIngela Anderton Andin
2013-11-13ssh: Add option to disallow CLIIngela Anderton Andin
OTP-10976
2013-11-13ssh: Simplify handling of connection attributes (e.i. user and sockname)Ingela Anderton Andin
OTP-11296
2013-11-13ssh: Make inet option configurable and remove ipv6_disabled optionIngela Anderton Andin
2013-11-01Merge branch 'maint'Fredrik Gustafsson
2013-10-31fix private_key type documentation in ssh_server_key_apiTristan Sloughter