summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/readconf.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Hostname->HostName cleanup; from lauri tirkkonenjmc2019-06-121-6/+6
* Typo and spelling fixes in comments and error messages. Patch fromdtucker2019-06-071-2/+2
* let PKCS11Provider=none do what users expectdjm2019-03-011-2/+3
* openssh-7.9 accidentally reused the server's algorithm lists in thedjm2019-02-231-4/+4
* add a ssh_config "Match final" predicatedjm2018-11-231-16/+28
* use path_absolute() for pathname checks; from Manoj Ampalamdjm2018-11-161-2/+2
* Support using service names for port numbers.naddy2018-10-051-6/+15
* Allow ssh_config IdentityAgent directive to accept environment variabledjm2018-10-031-2/+13
* add CASignatureAlgorithms option for the client, allowing it to specifydjm2018-09-201-3/+13
* better diagnosics on alg list assembly errors; ok deraadt@ markus@djm2018-08-121-12/+15
* Now that ssh can't be setuid, remove the original_real_uid anddtucker2018-07-271-3/+1
* Remove uid checks from low port binds. Now that ssh cannot bedtucker2018-07-271-4/+1
* Deprecate UsePrivilegedPort now that support for running ssh(1)dtucker2018-07-191-10/+2
* Remove support for running ssh(1) setuid and fatal if attempted.dtucker2018-07-181-4/+1
* repair PubkeyAcceptedKeyTypes (and friends) after RSA signature work -djm2018-07-041-10/+28
* unbreak SendEnv; patch from tb@djm2018-06-101-2/+2
* add a SetEnv directive to ssh_config that allows setting environmentdjm2018-06-091-3/+31
* switch config file parsing to getline(3) as this avoids static limitsmarkus2018-06-061-5/+5
* make UID available as a %-expansion everywhere that the username isdjm2018-06-011-1/+5
* support ProxyJump=none to disable ProxyJump functionality; bz#2869djm2018-05-221-9/+22
* Allow "SendEnv -PATTERN" to clear environment variables previouslydjm2018-04-061-6/+42
* add a couple of missed options to the config dump; patch fromdjm2018-04-061-1/+9
* Update default IPQoS in ssh(1), sshd(8) to DSCP AF21 for interactive and CS1 for bulkjob2018-04-041-3/+3
* Add experimental support for PQC XMSS keys (Extended Hash-Based Signatures)markus2018-02-231-1/+2
* Add BindInterface ssh_config directive and -B command-line argumentdjm2018-02-231-2/+9
* Replace atoi and strtol conversions for integer arguments to configdtucker2017-12-051-11/+5
* Add URI support to ssh, sftp and scp. For example ssh://user@hostmillert2017-10-211-32/+22
* Add 'reverse' dynamic forwarding which combines dynamic forwardingmarkus2017-09-211-18/+24
* Expand ssh_config's StrictModes option with two new settings:djm2017-09-031-4/+15
* Add RemoteCommand option to specify a command in the ssh configbluhm2017-05-301-2/+11
* there's no reason to artificially limit the key path here, just checkdjm2017-05-201-3/+3
* remove SSHv1 configuration options and man pages bitsdjm2017-04-301-26/+1
* remove SSHv1 ciphers; ok markus@djm2017-04-301-23/+2
* remove options.protocol and client Protocol configuration knobdjm2017-04-301-46/+11
* unifdef WITH_SSH1djm2017-04-301-10/+1
* Add SyslogFacility option to ssh(1) matching the equivalent option indtucker2017-04-281-2/+18
* better match sshd config parser behaviour: fatal() if line is overlong,djm2017-03-101-2/+4
* Plug mem leak on GLOB_NOMATCH case. From jjelen at redhat.com viadtucker2017-03-101-1/+2
* support =- for removing methods from algorithms lists, e.g.djm2017-02-031-5/+7
* allow form-feed characters at EOL; bz#2431 ok dtucker@djm2017-02-031-3/+3
* small cleanup post SSHv1 removal:djm2017-01-301-29/+47
* some explicit NULL tests when dumping configured forwardings;djm2017-01-301-3/+3
* fix previousdjm2017-01-061-2/+2
* show a useful error message when included config files can't bedjm2017-01-061-1/+6
* Fix logic in add_local_forward() that inverted a test when code wasjsg2016-10-251-2/+2
* Factor out "can bind to low ports" check into its own function. This will makedtucker2016-10-231-2/+2
* remove superfluous NOTREACHED commentdjm2016-08-251-2/+1
* reverse the order in which -J/JumpHost proxies are visited to bedjm2016-07-221-9/+16
* Do not clobber the global jump_host variables when parsing an inactivenaddy2016-07-201-12/+15
* Add a ProxyJump ssh_config(5) option and corresponding -J ssh(1)djm2016-07-151-6/+89