Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-20 | ssh: handle ssh_message binary decode errors | Hans Nilsson | |
2016-05-13 | ssh: badmatch in connection_handler (badly renamed variable) | Hans Nilsson | |
2016-05-04 | ssh: correct bad stop return value tag | Hans Nilsson | |
2016-05-02 | Merge branch 'lukas/ssh/sshc_con_hand_worker' | Hans Nilsson | |
* lukas/ssh/sshc_con_hand_worker: ssh: sshc_sup to use worker for ssh_con_handler | |||
2016-05-02 | Merge branch 'hans/ssh/remove_tcpip_forward' | Hans Nilsson | |
2016-05-02 | Merge branch 'hans/ssh/daemon_port_0/OTP-13527' | Hans Nilsson | |
Conflicts: lib/ssh/test/ssh_test_lib.erl | |||
2016-05-02 | Merge branch 'hans/ssh/prepare_for_release' | Hans Nilsson | |
2016-04-29 | ssh: sshc_sup to use worker for ssh_con_handler | Lukas Larsson | |
2016-04-29 | ssh: undocumented, untestesd and experimental tcpip_forward code removed | Hans Nilsson | |
2016-04-29 | ssh: remove dialyzer 'no-local-return' warnings | Hans Nilsson | |
2016-04-28 | ssh: make ssh:daemon choose port when Port=0 in the arguments | Hans Nilsson | |
2016-04-28 | ssh: Update app-file | Hans Nilsson | |
2016-04-27 | ssh: Channel request timer refactoring | Hans Nilsson | |
2016-04-27 | ssh: Idle-timer refactoring and some cosmetics and inlineing | Hans Nilsson | |
2016-04-27 | ssh: remove user_passwords from dumped state | Hans Nilsson | |
2016-04-27 | ssh: fix dialyzer warnings and errors | Hans Nilsson | |
2016-04-27 | ssh: Partly refactor and polish ssh_connection_handler | Hans Nilsson | |
2016-04-27 | ssh: change #state to #data | Hans Nilsson | |
2016-04-27 | ssh: refactor connection handler initialization | Hans Nilsson | |
2016-04-27 | ssh: Begin -spec for ssh_connection_handler | Hans Nilsson | |
2016-04-27 | ssh: Gen_statem rewrite of ssh_connection_handler | Hans Nilsson | |
Including misc fixes in surronding code as well as in test cases. | |||
2016-04-13 | Merge branch 'henrik/update-copyrightyear' | Henrik Nord | |
* henrik/update-copyrightyear: update copyright-year | |||
2016-03-30 | Merge branch 'hans/ssh/ssh_dbg_module' | Hans Nilsson | |
2016-03-29 | ssh: app-file updated with the experimental ssh_dbg module | Hans Nilsson | |
2016-03-29 | ssh: Experimental debug interface module | Hans Nilsson | |
2016-03-29 | ssh: experimental ssh_info extended | Hans Nilsson | |
2016-03-18 | ssh: Add ssh_info:collect/0 which returns all pids in the ssh supervisor tree | Hans Nilsson | |
Good for test cases. | |||
2016-03-18 | ssh: cleaning and add export decl in ssh_info | Hans Nilsson | |
2016-03-18 | ssh: Make ssh_info:string() return the result from print() as a string | Hans Nilsson | |
Good for test cases. | |||
2016-03-15 | update copyright-year | Henrik Nord | |
2016-01-18 | ssh: Adjusted default packet and window sizes | Hans Nilsson | |
2016-01-18 | ssh: Experimental options for ssh_sftp:start_channel to set packet_size or ↵ | Hans Nilsson | |
window_size | |||
2016-01-18 | ssh: Optimization - inline encoding in ssh_message:encode/1, now 8 times faster. | Hans Nilsson | |
Also fixes minor error in ssh_protocol_SUITE that the new encoder found. | |||
2016-01-08 | ssh: handle secondary ssh_msg_userauth_info_request message | Hans Nilsson | |
2015-12-07 | ssh: fix error for data fields errors | Hans Nilsson | |
2015-12-07 | ssh: fix error for bad packet lengths found by Defensics | Hans Nilsson | |
2015-12-04 | ssh: ssh_auth checks support for user pubkey alg | Hans Nilsson | |
2015-12-03 | ssh: client pub key opt implemented | Hans Nilsson | |
2015-12-01 | Support SSH key callback module options | Vipin Nair | |
This patch allows extra callback options to be passed to the module implementing the SSH callback module behaviour. A module implementing the SSH key callback API is used to customize the handling of public key. This patch allows extra callback options to be passed to the module implementing the SSH callback module behaviour. The key_cb option has been changed: {key_cb, atom()} -> {key_cb, key_cb()} Where: key_cb() :: atom() | {atom(), list()} The callback options, if specified, is made available to the callback module via the options passed to it under the key 'key_cb_private'. More details and some backgorund is available here[1]. [1]: http://erlang.org/pipermail/erlang-patches/2015-November/004800.html | |||
2015-11-27 | Merge branch 'maint-18' into maint | Hans Nilsson | |
* maint-18: Updated OTP version Update release notes ssh: vsn.mk updated ssh: New test cases for SSH_MSG_KEX_DH_GEX_REQUEST_OLD ssh: update existing testcases ssh: Improve group selection ssh: implemented server side SSH_MSG_KEX_DH_GEX_REQUEST_OLD for putty client Conflicts: lib/ssh/src/ssh_transport.erl lib/ssh/test/ssh_protocol_SUITE.erl lib/ssh/vsn.mk | |||
2015-11-26 | ssh: Improve group selection | Hans Nilsson | |
Now it chooses the first found if no exact match. | |||
2015-11-26 | ssh: implemented server side SSH_MSG_KEX_DH_GEX_REQUEST_OLD for putty client | Hans Nilsson | |
2015-11-25 | ssh: sftpd callback takes new option 'recv_window_size', defaults to 1000000 | Hans Nilsson | |
2015-11-25 | ssh: added 'pending' in recv_window handling and limit sending | Hans Nilsson | |
2015-11-24 | Merge branch 'hans/ssh/fd_more/OTP-12966' into maint | Hans Nilsson | |
* hans/ssh/fd_more/OTP-12966: ssh: testcases for starting daemon with given fd ssh: Make it possible for more than one daemon started with option fd | |||
2015-11-23 | ssh: fix dialyzer reported error | Hans Nilsson | |
2015-11-23 | ssh: AEAD_AES_(128|256)_GCM and aes(128|256)[email protected] crypto | Hans Nilsson | |
Note that the rfc5647 is ambigous so this implementation of AEAD_AES_(128|256)_GCM may or may not be compatible with others. They are note enabled by default but may be enabled by the user. See the Reference Manual, Application SSH for details of how we interpret the rfc. To be safe, use [email protected] or [email protected] instead. | |||
2015-11-23 | ssh: refactor packet reception | Hans Nilsson | |
There was an assymetric relationship between receiving a ssh-packet (decrypting-mac-decompress) and sending one. When sending, most of the work was defined in the ssh_transport module, while at reception the ssh_connection_handler was the one knowing what to do. This commit moves the reception down to the ssh_transport module where it belongs. | |||
2015-11-19 | ssh: Make it possible for more than one daemon started with option fd | Hans Nilsson | |
2015-11-17 | Merge branch 'hans/ssh/sshdir_search_order/OTP-13109' into maint | Hans Nilsson | |
* hans/ssh/sshdir_search_order/OTP-13109: ssh: ssh_file:default_user_dir/0 - try HOME env var first |