summaryrefslogtreecommitdiff
path: root/lib/ssh
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | ssh: Fix to be compatible with new group interfaceLukas Larsson2022-08-312-4/+8
| | | |
* | | | Merge branch 'maint'Hans Nilsson2022-08-251-7/+7
|\ \ \ \ | |/ / / | | | | | | | | | | | | * maint: ssh: Insert try ... for missing Group recovery
| * | | ssh: Insert try ... for missing Group recoveryHans Nilsson2022-08-251-7/+7
| | | |
* | | | Merge branch 'maint'Hans Nilsson2022-08-252-60/+60
|\ \ \ \ | |/ / / | | | | | | | | | | | | * maint: ssh: WS removal
| * | | ssh: WS removalHans Nilsson2022-08-252-60/+60
| | | |
* | | | Merge branch 'maint'Hans Nilsson2022-08-2510-44/+148
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | * maint: ssh: Documentation ssh: Implement max_initial_idle_time
| * | | ssh: DocumentationHans Nilsson2022-08-245-38/+88
| | | |
| * | | ssh: Implement max_initial_idle_timeHans Nilsson2022-08-195-6/+60
| | | |
* | | | otp: Fix some .gitignore filesLukas Larsson2022-08-181-0/+1
|/ / /
* | | Merge pull request #6194 from HansN/hans/ssh/change_optionsHans Nilsson2022-08-105-52/+336
|\ \ \ | | | | | | | | | | | | | | | | | | | | Change SSH options in a running server OTP-18196
| * | | ssh: DocumentationHans Nilsson2022-08-101-1/+25
| | | |
| * | | ssh: Tests of ssh:daemon_replace_options/2Hans Nilsson2022-08-081-45/+251
| | | |
| * | | ssh: Function to replace options in a running daemonHans Nilsson2022-08-081-0/+12
| | | |
| * | | ssh: Function to merge new options into an existing options mapHans Nilsson2022-08-081-5/+19
| | | |
| * | | ssh: Primitives for changing the acceptor deamon optionsHans Nilsson2022-08-081-1/+29
| | | |
* | | | Merge branch 'hans/ssh/cuddle_docs' into maintHans Nilsson2022-08-101-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * hans/ssh/cuddle_docs: ssh: Minor doc clearification
| * | | | ssh: Minor doc clearificationHans Nilsson2022-08-081-2/+2
| |/ / /
* | | | ssh: Fix error in ssh_dbg_off(tcp)Hans Nilsson2022-08-081-1/+1
|/ / /
* | | Merge branch 'hans/ssh/cuddle_tests' into maintHans Nilsson2022-08-033-11/+11
|\ \ \ | | | | | | | | | | | | | | | | | | | | * hans/ssh/cuddle_tests: ssh/test: Fix four compile warnings in testsuites ssh/test: Fix random errors in test
| * | | ssh/test: Fix four compile warnings in testsuitesHans Nilsson2022-08-012-5/+3
| | | |
| * | | ssh/test: Fix random errors in testHans Nilsson2022-08-011-6/+8
| | | |
* | | | Merge pull request #6066 from ↵Hans Nilsson2022-08-016-10/+72
|\ \ \ \ | |/ / / |/| | | | | | | | | | | HansN/hans/ssh/authentication-none/GH-6021/OTP-18134 Option to skip SSH authentication for some niche cases
| * | | ssh: Testcase for option 'no_auth_needed'Hans Nilsson2022-06-081-0/+26
| | | |
| * | | ssh: Typing and docHans Nilsson2022-06-082-1/+16
| | | |
| * | | ssh: Option to skip initial authenticationHans Nilsson2022-06-083-9/+30
| | | |
* | | | inets: fix dialyzer warnings for inets/httd examplesJakub Witczak2022-07-121-2/+2
| | | | | | | | | | | | | | | | | | | | - fix dialyzer warnings in inets/httpd examples folder - fix related typespec in ssh_sftp module
* | | | Merge branch 'deterministic-build' of https://github.com/TD5/otp into maintBjörn Gustavsson2022-06-291-0/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 'deterministic-build' of https://github.com/TD5/otp: make: Allow OTP to be built deterministically compiler: Make test_lib robust to +deterministic compiler: Make compiler forward +determinsitic flag to epp compiler: Make yecc respect +deterministic compiler: Make leex respect +deterministic compiler: Make asn1ct_gen respect +deterministic compiler: Make EPP respect +deterministic OTP-18165
| * | | | make: Allow OTP to be built deterministicallyTom Davies2022-06-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a --enable-deterministic-build to the configure script, which sets ERL_DETERMINISTIC=yes throughout the relevant Makefiles, which then invoke the relevant build stages with the +deterministic option. This addresses absolute paths being included in generated .erl files and compiled .beam files that resulted in builds from different source directories generating different artefacts (which is a component of the issue in erlang#4482). I think it would make sense to make this the default at some stage, but I've put the change behind a flag for now to decouple making deterministic OTP builds possible from making them the default. Having +deterministic set results in compiler options being removed from the module info for modules where this options was used. This may have other implications for users of OTP. For tests themselves, +determinism is not set, since many test cases depend on accessing the test module's compilation options, or other features not available in deterministic mode, in order to configure themselves. For tests of the determinism feature specifically, +deterministic must be explicitly passed to the compiler within the relevant test cases.
* | | | | Merge branch 'maint-23' into maintIngela Anderton Andin2022-06-211-0/+16
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * maint-23: Updated OTP version Prepare release Update copyright year
| * | | | | Prepare releaseErlang/OTP2022-06-212-1/+17
| | | | | |
| * | | | | Update copyright yearErlang/OTP2022-06-214-4/+4
| | | | | |
| * | | | | Merge branch 'hans/ssh/limit_binaries_dump-23/OTP-18094' into maint-23Erlang/OTP2022-06-215-7/+106
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * hans/ssh/limit_binaries_dump-23/OTP-18094: ssh: Introduce option max_log_item_len
| | * | | | | ssh: Introduce option max_log_item_lenHans Nilsson2022-05-245-7/+106
| | | | | | |
* | | | | | | Merge branch 'maint-25' into maintIngela Anderton Andin2022-06-092-1/+17
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * maint-25: Updated OTP version Prepare release Update copyright year
| * | | | | | | Prepare releaseErlang/OTP2022-06-082-1/+17
| | | | | | | |
| * | | | | | | Update copyright yearErlang/OTP2022-06-084-4/+4
| | | | | | | |
| * | | | | | | ssh: Introduce option max_log_item_lenHans Nilsson2022-05-245-7/+106
| | | | | | | |
* | | | | | | | Merge branch 'maint-24' into maintIngela Anderton Andin2022-06-085-4/+20
|\ \ \ \ \ \ \ \ | |_|_|_|_|/ / / |/| | | | | / / | | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | * maint-24: Updated OTP version Prepare release Update copyright year
| * | | | | | Prepare releaseErlang/OTP2022-06-072-1/+17
| | | | | | |
| * | | | | | Update copyright yearErlang/OTP2022-06-074-4/+4
| | | | | | |
| * | | | | | ssh: Introduce option max_log_item_lenHans Nilsson2022-05-175-7/+106
| | |_|_|_|/ | |/| | | |
* | | | | | ssh: Introduce option max_log_item_lenHans Nilsson2022-05-245-7/+106
| |/ / / / |/| | | |
* | | | | Prepare releaseErlang/OTP2022-05-172-1/+32
| | | | |
* | | | | Update copyright yearErlang/OTP2022-05-172-2/+2
| | | | |
* | | | | Merge branch 'hans/ssh/move_to_ssh_file/GH-5767/OTP-18079'Hans Nilsson2022-05-045-36/+50
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * hans/ssh/move_to_ssh_file/GH-5767/OTP-18079: ssh: doc ssh: Move extract_public_key to ssh_file
| * | | | | ssh: docHans Nilsson2022-04-281-0/+9
| | | | | |
| * | | | | ssh: Move extract_public_key to ssh_fileHans Nilsson2022-04-284-36/+41
| | |_|_|/ | |/| | |
* | | | | ssh: Increase min size of dh keysHans Nilsson2022-04-281-4/+6
|/ / / / | | | | | | | | | | | | The OpenSSL 3.0 allowed min size has increased.
* | | | Revert "Prepare release"Henrik Nord2022-04-132-23/+1
| | | | | | | | | | | | | | | | This reverts commit a2c8df222e6d02fa518d5d6cbbea75a9dd720d30.
* | | | Prepare releaseErlang/OTP2022-04-112-1/+23
| | | |