Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-22 | ssh: Add pty_alloc request to ssh:shell/[1,2,3] | Ingela Anderton Andin | |
2014-09-25 | ssh: Adjust supervisor tree to make sure new listning | Ingela Anderton Andin | |
options are honored | |||
2014-08-22 | Test Other Clauses of start_shell | Michael K. Schmidt | |
start_shell() is called by exec, so test those cases as well. Also add support for passing a fun to exec. | |||
2014-06-12 | Fix spelling mistakes | Marcus Arendt | |
2014-06-11 | ssh: Handle inet and inet6 option correctly | Ingela Anderton Andin | |
2014-05-09 | ssh: Use correct timeout value for the connection timeout | Ingela Anderton Andin | |
2014-04-24 | ssh: Add max_session parameter to ssh:daemon | Hans Nilsson | |
2014-03-26 | ssh: added daemon option 'parallel_login', default false | Hans Nilsson | |
2014-03-26 | ssh: Added option negotiation_timeout for ssh:daemon | Hans Nilsson | |
This option is for closing a connection where the client connects, but then do nothing except keeping server resources. | |||
2014-02-14 | Merge branch 'weisslj/ssh-spec-doc-fixes' | Henrik Nord | |
* weisslj/ssh-spec-doc-fixes: ssh: Fix dialyzer type specs and documentation OTP-11705 | |||
2014-01-28 | Fix incorrect proplists type reference | Tuncer Ayaz | |
ssh and public_key were referring to proplists:proplists/0 which does not exist. Fix by using the correct type proplists:proplist/0. | |||
2014-01-27 | ssh: Fix dialyzer type specs and documentation | Johannes 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()}. | |||
2013-11-13 | ssh: Add option to disallow CLI | Ingela Anderton Andin | |
OTP-10976 | |||
2013-11-13 | ssh: Simplify handling of connection attributes (e.i. user and sockname) | Ingela Anderton Andin | |
OTP-11296 | |||
2013-11-13 | ssh: Make inet option configurable and remove ipv6_disabled option | Ingela Anderton Andin | |
2013-11-13 | ssh: Merge connection_manager and connection_handler processes | Ingela Anderton Andin | |
Also start adding dialyzer specs and removing dead code | |||
2013-10-28 | ssh: Add ssh:sockname/1 incl doc and tests | Hans Nilsson | |
OTP-11345, sto575, tsk374 | |||
2013-10-28 | ssh: Add function ssh:peername/1 with test | Hans Nilsson | |
OTP-11345, sto575, tsk374 | |||
2013-06-07 | public_key & ssl: Add ASN-1 dependency | Ingela Anderton Andin | |
As the ASN-1 application relies on a nif in R16 for decodeing (that was not the case in R15), public_key currently has a runtime dependency on ASN-1. Hopefully we will be able to remove this dependency again in the future. | |||
2013-01-25 | Update copyright years | Björn-Egil Dahlberg | |
2013-01-22 | Removed deprecated functions | Fredrik Gustafsson | |
2013-01-22 | handle_pref_algs with correct return values | Fredrik Gustafsson | |
2013-01-18 | Fixed bug which lead to crash in startup of daemon, if port was in use | Fredrik Gustafsson | |
2012-12-19 | Merge branch 'fredrik/ssh/rekeying' | Fredrik Gustafsson | |
* fredrik/ssh/rekeying: ssh_basic_SUITE rekey test modifications Modifications to idle_time testcase Added test for rekeying Added doc for rekey_limit option Renegotiating every hour and every gb sent, can be decreased with option {rekey_limit, integer()} | |||
2012-12-13 | ssh: Document and clean up SSH behaviours | Ingela Anderton Andin | |
2012-12-13 | ssh: Add Users Guide and enhance man pages | Ingela Anderton Andin | |
2012-12-13 | ssh: Added User's Guide framework and minor enhancements | Niclas Eklund | |
2012-11-23 | Renegotiating every hour and every gb sent, can be decreased with option ↵ | Fredrik Gustafsson | |
{rekey_limit, integer()} | |||
2012-11-22 | Merge branch 'maint' | Fredrik Gustafsson | |
* maint: is_boolean/1 is called instead of checking Removed ip options to gen_tcp from ssh.erl | |||
2012-11-21 | is_boolean/1 is called instead of checking | Fredrik Gustafsson | |
2012-11-20 | Removed ip options to gen_tcp from ssh.erl | Fredrik Gustafsson | |
2012-11-16 | Merge branch 'fredrik/ssh/timer-on-connect/OTP-10514' | Fredrik Gustafsson | |
* fredrik/ssh/timer-on-connect/OTP-10514: New setup in testing idle_time Use same connect as the rest of testcases Fixed doc Added testcase for idle timer Not start the idle timer on connect Doc about idle_time option to ssh:connect Check cache on channel exec handle no idle-timer on check cache Option idle_time introduced, it will trigger the timer and if it is not given the timer_ref entry is infinity Timeout after 1h of idle on connection, which exits the connection Conflicts: lib/ssh/src/ssh.erl | |||
2012-11-15 | Fixed user interaction ssh | Fredrik Gustafsson | |
2012-11-05 | SSH quiet mode | Fredrik Gustafsson | |
2012-11-02 | Option to ssh:connect {pref_public_key_algs, list()} where you can give the ↵ | Fredrik Gustafsson | |
algorithms you want to use | |||
2012-10-31 | Option idle_time introduced, it will trigger the timer and if it is not ↵ | Fredrik Gustafsson | |
given the timer_ref entry is infinity | |||
2012-08-28 | ssh: Correct error handling of ssh connect | Ingela Anderton Andin | |
2012-08-01 | SSH: Make "auth_methods" server option re-usable | Stefan Zegenhagen | |
The 'auth_methods' option is used by the server side of the SSH code to tell a connecting SSH client about the authentication methods that are supported by the server. The code still extracts and handles the 'auth_methods' option from Opts in appropriate places, but the Opts checking code in ssh.erl didn't allow that option to be specified. | |||
2012-04-24 | Corrected ssh option handling | Ingela Anderton Andin | |
The option ip_v6_disabled and the undocumented option exec was incorrectly handled by the option checking code. There where two options for allowing user interaction one documented and one undocumented, they where merge to to be the documented one. For backwards compatibility the undocumented one is transformed to the documented one in the option checking code. | |||
2012-02-28 | Prevent client hanging. (OTP-8111) | Ingela Anderton Andin | |
Restored supervisor tree so that error propagation will work as intended, although connection processes are set to temporary, instead of permanent with restart times set to 0, and termination of the connection subtree is initiated by a temporary process spawned by ssh_connection_managers terminate. This is done to avoid unwanted supervisor reports. Pherhaps we need some new supervisor functionality. | |||
2012-02-21 | Added checks of API input | Ingela Anderton Andin | |
2012-02-15 | Add support for key files protected by pass phrases | Ingela Anderton Andin | |
2012-02-10 | Client fallbacks to ipv4 if connection is refused with ipv6 | Ingela Anderton Andin | |
2012-02-10 | Cleaned up code so that ssh_file can become a template for a documented | Ingela Anderton Andin | |
ssh_keys behavior | |||
2012-02-10 | Better handling of IPv6 | Ingela Anderton Andin | |
2012-02-10 | Removed no longer needed code | Ingela Anderton Andin | |
2010-12-27 | Improved error handling for ssh:connect/3/4. | Niclas Eklund | |
2010-12-20 | OTP-8987 | Niclas Eklund | |
In some cases SSH returned {error, normal} when a channel was terminated unexpectedly. This has now been changed to {error, channel_closed}. OTP-8986 It is now possible to use SSH to sign and verify binary data. | |||
2010-04-21 | Changes after ssh-1.1.8 | Niclas Eklund | |
2010-04-21 | New branch for ssh-2.0 and later | Niclas Eklund | |