Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-08-25 | Merge branch 'dev' into major | Henrik Nord | |
2011-08-08 | ssh: Support parallel make | Björn Gustavsson | |
2011-06-21 | Corrected year in license header. | Niclas Eklund | |
2011-06-21 | OTP-9386 - Calling ssh_sftp:stop_channel/1 resulted in that the trap_exit ↵ | Niclas Eklund | |
flag was set to true for the invoking process. | |||
2011-05-06 | An unexpected message would crash the ssh_connection_handler and close the ↵ | Niclas Eklund | |
connection. Now an error message is generated instead. | |||
2011-04-27 | OTP-9232: | Niclas Eklund | |
A memory leak has been fixed. I.e. per terminated connection the size of a pid and the length of a user name string was not cleared. | |||
2011-04-20 | Merge branch 'maint-r14' of super:otp into nick/ssh/memory_leak/OTP-9232 | Niclas Eklund | |
2011-04-20 | Added deletion of clients to be used when a session is terminated. | Niclas Eklund | |
2011-04-19 | Renamed the function strong_rand_uniform to strong_rand_mpint. | Niclas Eklund | |
Added some checks in crypto.erl and crypto.c. Changed ssh_bits to use strong_rand_mpint. | |||
2011-04-18 | Fixed SSH appup, copyright headers SSH vsn and SSH release note. | Niclas Eklund | |
2011-04-15 | Adds NIFs for cryptographically strong random number generation. | Niclas Eklund | |
Also adds documentation and unit tests. Thanks to Geoff Cant. | |||
2011-03-11 | Update copyright years | Björn-Egil Dahlberg | |
2011-01-24 | Merge branch 'nick/ssh/sign-verify-binary' into maint-r14 | Erlang/OTP | |
* nick/ssh/sign-verify-binary: Updated appup file. Updated notes file. Changed year in copyright header. Added updated modules to the appup file. Improved error handling for ssh:connect/3/4. Release note contained wrong ticker number. OTP-8987 In some cases SSH returned {error, normal} when a channel was terminated unexpectedly. This has now been changed to {error, channel_closed}. | |||
2011-01-24 | Merge branch 'nick/ensure_ssh_dir_exists/OTP-9010' into maint-r14 | Erlang/OTP | |
* nick/ensure_ssh_dir_exists/OTP-9010: Updated appup file. Updated notes file. Updated year in license. OTP-9010: ssh: ensure ~/.ssh exists | |||
2011-01-20 | Updated appup file. | Niclas Eklund | |
2011-01-20 | Updated appup file. | Niclas Eklund | |
2011-01-20 | Added updated modules to the appup file. | Niclas Eklund | |
2011-01-20 | Added updated modules to the appup file. | Niclas Eklund | |
2011-01-17 | OTP-9031 - SSH did not handle the error reason enetunreach when trying to ↵ | Niclas Eklund | |
open a IPv6 connection. | |||
2010-12-28 | ssh: ensure ~/.ssh exists | Tuncer Ayaz | |
Make sure that ~/.ssh exists before trying to open files like ~/.ssh/known_hosts. Reported-By: Daniel Goertzen | |||
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-11-01 | Move away from using deprecated public_key function pem_to_der. | Niclas Eklund | |
2010-10-28 | Merge branch 'maint-r13' into maint-r14 | Niclas Eklund | |
Conflicts: lib/ssh/doc/src/notes.xml lib/ssh/src/ssh.appup.src lib/ssh/src/ssh_system_sup.erl lib/ssh/vsn.mk | |||
2010-10-25 | The fix regarding OTP-8863 was not included in the previous version as stated | Niclas Eklund | |
2010-10-21 | Merge branch 'nick/ssh/fix-process-leak/OTP-8807' into maint-r13 | Erlang/OTP | |
* nick/ssh/fix-process-leak/OTP-8807: Fix race condition when terminating a connection. fix process leak in ssh_system_sup (dynamicaly created childs where not cleaned up) | |||
2010-10-06 | In some cases a crash report was generated when a connection was closing down. | Niclas Eklund | |
This was caused by a race condition between two processes. | |||
2010-09-03 | Merge branch 'nick/ssh/fix-process-leak/OTP-8807' into dev | nick | |
* nick/ssh/fix-process-leak/OTP-8807: Fix race condition when terminating a connection. fix process leak in ssh_system_sup (dynamicaly created childs where not cleaned up) | |||
2010-09-02 | Fix race condition when terminating a connection. | nick | |
2010-09-02 | fix process leak in ssh_system_sup (dynamicaly created childs where not ↵ | Stefan Grundmann | |
cleaned up) The ssh_system_sup supervisor supervises one ssh_subsystem_sup process for every client connection. There was no functionality to free resources (terminate_child/ delete_child) when a client connection was closed. Which lead to one ssh_subsystem_sup and one ssh_channel_sup process left over. This commit adds ssh_system_sup:stop_subsystem/2 and code that calls it in ssh_connection_manager:terminate/2. | |||
2010-08-25 | Merge branch 'maint-r13' into dev | Björn Gustavsson | |
* maint-r13: snmp: Patch 1130 inets: Patch 1129 ssh: Patch 1127 ssh: Patch 1126 Conflicts: lib/inets/doc/src/notes.xml lib/inets/src/inets_app/inets.appup.src lib/inets/vsn.mk lib/snmp/vsn.mk lib/ssh/doc/src/notes.xml lib/ssh/src/ssh.appup.src lib/ssh/vsn.mk | |||
2010-08-23 | ssh: Patch 1127 | Niclas Eklund | |
OTP-8735 SSH in some cases generated a crash report when a channel was closed in a normal way. | |||
2010-08-23 | ssh: Patch 1126 | Niclas Eklund | |
OTP-8714 SSH in some cases terminated channels with reason normal when it should have been shutdown. | |||
2010-08-20 | ssh: Patch 1119 | Niclas Eklund | |
OTP-8550 The function ssh:connect/4 was not exported. OTP-8644 Aligned error message with used version (SSH_FX_FAILURE vs SSH_FX_NOT_A_DIRECTORY, the latter introduced in version 6). OTP-8645 Resolved race condition when another connection is started before a channel is opened in the first connection. OTP-8535 The configuration parameter ip_v6_disabled is now available, which makes it possible for the user to alter the IP version SSH shall use. OTP-8534 The ssh_connection:send operation now accepts infinity as timeout. OTP-8524 The connection handler now include stack traces when a channel message is not handled correctly. | |||
2010-06-02 | Fixing compiler warnings regarding max/2 | Niclas Eklund | |
2010-05-26 | Fix race condition when an other connection is started before a channel is ↵ | Niclas Eklund | |
opened in the first connection. | |||
2010-05-26 | Aligning error message with used version | Niclas Eklund | |
2010-04-21 | Removed deprecated functions and module | Niclas Eklund | |
2010-04-21 | Changes after ssh-1.1.8 | Niclas Eklund | |
2010-04-21 | New branch for ssh-2.0 and later | Niclas Eklund | |
2010-04-14 | Removed call to the deprecated module ssh_cm | Niclas Eklund | |
2010-03-30 | Exporting ssh:connect/4 | Niclas Eklund | |
2010-03-22 | Fix usage of ip_v6_disabled and publish it | Niclas Eklund | |
2010-03-22 | The send operation now accepts infinity as timeout | Niclas Eklund | |
2010-03-16 | Preparing for new version | Niclas Eklund | |
2010-03-16 | Added stack trace information when ssh_connection:handle_msg fails ↵ | Niclas Eklund | |
(suggested by Magnus Henoch) | |||
2010-02-01 | In some cases SSH ceased to collect more data from the transport layer. | Niclas Eklund | |
2009-11-20 | The R13B03 release.OTP_R13B03 | Erlang/OTP | |