summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* /* fallthrough */ is something a programmer understands. Butderaadt2004-09-151-2/+2
| | | | /* FALLTHROUGH */ is also understood by lint, so that is better.
* cleanup multiplex control socket on SIGHUP too, spotted by sturm@djm2004-09-071-1/+2
| | | | ok markus@ deraadt@
* Use permanently_set_uid() in ssh and ssh-keysign for consistency, matchesdtucker2004-08-231-3/+6
| | | | change in Portable; ok markus@
* more s/illegal/invalid/markus2004-07-281-2/+2
|
* spacesderaadt2004-07-111-6/+6
|
* Fix counting in master/slave when passing environment variables; ok djm@dtucker2004-06-231-3/+5
|
* make ssh -Wshadow clean, no functional changesavsm2004-06-211-5/+5
| | | | markus@ ok
* filter passed env vars at slave in connection sharing case; ok markus@djm2004-06-201-8/+36
|
* trim synopsis for -S, allow -S and -oControlMaster, -MM means 'ask'; ok djmmarkus2004-06-181-6/+4
|
* delay signal handler setup until we have finished talking to the master.djm2004-06-181-5/+5
| | | | allow interrupting of setup (e.g. if master is stuck); ok markus@
* sync usage() and SYNPOSIS with connection sharing changesdjm2004-06-171-3/+4
|
* Add option for confirmation (ControlMaster=ask) via ssh-askpass before openingdjm2004-06-171-2/+5
| | | | shared connections; ok markus@
* support environment passing over shared connections; ok markus@djm2004-06-171-5/+13
|
* implement session multiplexing in the client (the server has supported thisdjm2004-06-131-92/+184
| | | | since 2.0); ok markus@
* make two tiny header files go away; djm okderaadt2004-05-081-3/+2
|
* bz #815: implement ability to pass specified environment variables from thedjm2004-04-271-1/+40
| | | | client to the server; ok markus@
* fix idiot typo that i introduced in my last commit;djm2004-04-191-2/+2
| | | | spotted by cschneid AT cschneid.com
* perform strict ownership and modes checks for ~/.ssh/config files, as thesedjm2004-04-181-4/+5
| | | | | | can be used to execute arbitrary programs; ok markus@ NB. ssh will now exit when it detects a config with poor permissions
* ssh, sshd: sync version output, ok djmmarkus2004-03-111-7/+3
|
* trim usage to match ssh(1) and look more like unix. ok djm@markus2004-03-101-44/+7
|
* increase x11 cookie lifetime to 20 minutes; ok djmmarkus2004-03-091-2/+2
|
* application layer keep alive (ServerAliveInterval ServerAliveCountMax)markus2003-12-161-6/+3
| | | | | for ssh(1), similar to the sshd(8) option; ok beck@; with help from jmc and dtucker@
* don't modify argv for ssh -o; similar to sshd.c 1.283markus2003-12-091-3/+5
|
* Make ssh -k mean GSSAPIDelegateCredentials=no. Suggestion & ok markus@dtucker2003-11-241-2/+2
|
* unexpand and delete whitespace at EOL; ok markus@djm2003-11-211-3/+3
|
* remote x11 clients are now untrusted by default, uses xauth(8) to generatemarkus2003-10-111-24/+68
| | | | | untrusted cookies; ForwardX11Trusted=yes restores old behaviour. ok deraadt; feedback and ok djm/fries
* remove unused kerberos code; ok henning@markus2003-09-011-3/+2
|
* socks4->socks, since with support both 4 and 5; dtucker@zip.com.aumarkus2003-08-131-2/+2
|
* remove RhostsAuthentication; suggested by djm@ before; ok djm@, deraadt@,markus2003-08-131-8/+1
| | | | fgsch@, miod@, henning@, jakob@ and others
* remove (already disabled) KRB4/AFS support, re-enable -k in ssh(1);markus2003-07-221-7/+2
| | | | test+ok henning@
* don't exit on multiple -v or -d; ok deraadt@markus2003-07-161-6/+6
|
* fix AddressFamily option in config file, from brent@graveland.net; ok markus@djm2003-07-031-10/+7
|
* convert hostkeyalias to lowercase, otherwise uppercase aliases willmarkus2003-07-021-1/+8
| | | | not match at all; ok henning@
* add sc_get_key_label; larsch at trustcenter.de; bugzilla#591markus2003-06-121-2/+2
|
* Make "ssh -V" print the OpenSSL version in a human readable form. Patchdjm2003-05-151-3/+3
| | | | from Craig Leres (mindrot at ee.lbl.gov); ok markus@
* make channel_new() strdup the 'remote_name' (not the caller); ok theomarkus2003-05-111-2/+2
|
* rename log() into logit() to avoid name conflict. markus ok, from netbsditojun2003-04-081-9/+9
|
* support 'ProxyCommand none'; bugzilla #433; binder@arago.de; ok djm@markus2003-02-061-1/+5
|
* Avoid setting optind to 0 as GNU getopt treats that like we do optreset.millert2002-12-091-5/+4
| | | | markus@ OK
* allow usernames with embedded '@', e.g. scp user@vhost@realhost:file /tmp;markus2002-11-271-3/+3
| | | | http://bugzilla.mindrot.org/show_bug.cgi?id=447; ok mouring@, millert@
* debug->debug2markus2002-11-211-2/+2
|
* bugzilla.mindrot.org #223 - ProxyCommands don't exit.djm2002-09-191-1/+12
| | | | Patch from dtucker@zip.com.au; ok markus@
* don't connect to agent to test for presence if we've previouslystevesk2002-09-111-5/+2
| | | | connected; ok markus@
* shrink initial privilege bracket for setuid case; ok markus@stevesk2002-08-291-10/+10
|
* deprecate -P as UsePrivilegedPort defaults to no now; ok markus@stevesk2002-08-291-3/+2
|
* display a warning from ssh when XAuthLocation does not exist or xauthstevesk2002-07-191-3/+12
| | | | returned no authentication data. ok markus@
* re-enable ssh-keysign's sbit, but make ssh-keysign read /etc/ssh/ssh_configmarkus2002-07-031-2/+3
| | | | | and exit if HostbasedAuthentication is disabled globally. based on discussions with deraadt, itojun and sommerfeld; ok itojun@
* minor KNFderaadt2002-06-301-3/+4
|
* ssh_connect returns 0 on successmarkus2002-06-121-2/+2
|
* remove unused cruft.markus2002-06-111-9/+7
|