summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
AgeCommit message (Collapse)Author
2003-12-09Clear exit code when ssh -N is terminated with a SIGTERM. ok markus@Darren Tucker
2003-12-09rename keepalive to tcpkeepalive; the old name causes too muchMarkus Friedl
confusion; ok djm, dtucker; with help from jmc@
2003-12-09don't modify argv for ssh -o; similar to sshd.c 1.283Markus Friedl
2003-12-09fix -o and HUP; ok henning@Markus Friedl
2003-12-09make ClientKeepAlive work for ssh -N, too (no login shell requested).Markus Friedl
1) send a bogus channel request if we find a channel 2) send a bogus global request if we don't have a channel ok + test beck@
2003-12-09Prevent ssh-keygen -T from outputting moduli with a generator of 0, sinceDarren Tucker
they can't be used for Diffie-Hellman. Assistance and ok djm@
2003-12-08print requested group size in debug; ok djmMarkus Friedl
2003-12-07remove unused debugging #define templatesDamien Miller
2003-12-02use SSH_LISTEN_BACKLOG (=128) in listen(2).Markus Friedl
2003-12-02improvments from andreas@:Markus Friedl
* saner speed estimate for transfers that takes less than a second by rounding the time to 1 second. * when the transfer is finished calculate the actual total speed rather than the current speed which is given during the transfer
2003-12-01Use ${INSTALL} instead of install; from art's amd64 tree.Alexander Yurchenko
ok markus@
2003-11-26fix #ifdef before #define; ok markus@Damien Miller
2003-11-25ssh-add doesn't need to be a descendant of ssh-agent. Ok markus@, jmc@.Matthieu Herrb
2003-11-24Make ssh -k mean GSSAPIDelegateCredentials=no. Suggestion & ok markus@Darren Tucker
2003-11-23from portable: rename clashing variable limit-> limit_rate; ok markus@Damien Miller
2003-11-23consistency PATH_MAX -> MAXPATHLEN; ok markus@Damien Miller
2003-11-23from portable - use sysconf to detect fd limit; ok markus@Damien Miller
2003-11-21unexpand and delete whitespace at EOL; ok markus@Damien Miller
2003-11-20fix rounding errors; from andreas@Markus Friedl
2003-11-18unbreak fake authloop for non-existent users (my screwup). Spotted andDamien Miller
tested by dtucker@; ok markus@
2003-11-18Correct check for authctxt->valid. ok djm@Darren Tucker
2003-11-17replace "gssapi" with "gssapi-with-mic"; from Simon Wilkinson; test + ok jakob.Markus Friedl
2003-11-17return error on msg send/receive failure (rather than fatal); ok markus@Damien Miller
2003-11-14cleanup and minor fixes for the client code; from Simon WilkinsonMarkus Friedl
2003-11-12make verb agree with subject, and kill some whitespace;Jason McIntyre
2003-11-12update SSHFP validation. ok markus@Jakob Schlyter
2003-11-12When called with -q, pass -q to ssh; suppresses SSH2 banner. ok markus@Darren Tucker
2003-11-10constify. ok markus@ & djm@Jakob Schlyter
2003-11-08typos from Jonathon Gray;Jason McIntyre
2003-11-08remove unused variable (pw). ok djm@Jakob Schlyter
2003-11-04standardise arguments to auth methods - they should all take authctxt.Damien Miller
check authctxt->valid rather then pw != NULL; ok markus@
2003-11-03do not free static type pointer in warn_changed_key()Jakob Schlyter
2003-11-03move changed key warning into warn_changed_key(). ok markus@Jakob Schlyter
2003-11-03make this a little more idiot-proof; ok markus@Damien Miller
2003-11-02remove support for SSH_BUG_GSSAPI_BER; simon@sxw.org.ukMarkus Friedl
2003-10-28error->debug for getsockopt+TCP_NODELAY; several requestsMarkus Friedl
2003-10-26rename 'supported' static var in userauth_gssapi() to 'gss_supported'Anil Madhavapeddy
to avoid shadowing the global version. markus@ ok
2003-10-21make sure the doid is larger than 2Markus Friedl
2003-10-15check pmonitor != NULLMarkus Friedl
2003-10-1410X for mkdtemp; djm@Markus Friedl
2003-10-14updateJakob Schlyter
2003-10-14include SSHFP lookup code (not enabled by default). ok markus@Jakob Schlyter
2003-10-13don't refer to options related to forwarding; ok jmc@Markus Friedl
2003-10-12note that EnableSSHKeySign should be in the non-hostspecific section;Jason McIntyre
remove unnecessary .Pp; ok markus@
2003-10-11return NULL for missing banner; ok djm@Markus Friedl
2003-10-11search keys in reverse order; fixes #684Markus Friedl
2003-10-11remote x11 clients are now untrusted by default, uses xauth(8) to generateMarkus Friedl
untrusted cookies; ForwardX11Trusted=yes restores old behaviour. ok deraadt; feedback and ok djm/fries
2003-10-08default GSS API to no in client, too; ok jakob, deraadt@Markus Friedl
2003-10-08scp and sftp: add options list and sort options. options list requestedJason McIntyre
by deraadt@ sshd: use same format as ssh ssh: remove wrong option from list sftp-server: Subsystem is documented in ssh_config(5), not sshd(8) ok deraadt@ markus@
2003-10-07set ptr to NULL after freeTheo de Raadt