summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sshd.c
AgeCommit message (Expand)Author
2003-04-14avoid hardcoded SOCK_xx; with itojun@; should allow ssh over SCTPMarkus Friedl
2003-04-08rename log() into logit() to avoid name conflict. markus ok, from netbsdJun-ichiro itojun Hagino
2003-02-16split kex into client and server code, no need to linkMarkus Friedl
2003-01-27more specific error message when /var/empty has wrong permissions;Markus Friedl
2002-11-07log to stderr if -ie is given, bug #414, prj@po.cwru.eduMarkus Friedl
2002-09-27add a generic match for a prober, such as sie big brother; idea from stevesk@...Michael Shalayeff
2002-09-25typo; pilot@monkey.orgMarkus Friedl
2002-09-13remove use of SO_LINGER, it should not be needed. error checkKevin Steves
2002-07-23utmp_len is unsigned; display error consistent with other options.Kevin Steves
2002-07-19remove fatal cleanups after fork; based on discussions with and codeMarkus Friedl
2002-06-30minor KNFTheo de Raadt
2002-06-30lint asks that we use names that do not overlapTheo de Raadt
2002-06-28gidset[2] -> gidset[1]; markus okTheo de Raadt
2002-06-28range check -u option at invocationTheo de Raadt
2002-06-25lightweight do_setusercontext after chroot()Markus Friedl
2002-06-23some minor KNF and %uTheo de Raadt
2002-06-23various KNF and %d for unsignedTheo de Raadt
2002-06-22don't call setsid() if debugging or run from inetd; no "Operation notKevin Steves
2002-06-22check /var/empty owner mode; ok provos@Kevin Steves
2002-06-20allow Compression=yes/no in sshd_configMarkus Friedl
2002-06-11pid_t cleanup. Markus need this now to keep hacking.Mike Pechkin
2002-05-29don't start if privsep is enabled and SSH_PRIVSEP_USER orMarkus Friedl
2002-05-22spelling; abishoff@arc.nasa.govTheo de Raadt
2002-05-15'monitor' variable clashes with at least one lame platform (NeXT). Renamedmouring
2002-05-13Call setsid() in the child after sshd accepts the connection and forks.Todd C. Miller
2002-04-23Improve error message; ok markus@ stevesk@Damien Miller
2002-03-30check waitpid for EINTR; based on patch from peter@ifm.liu.seMarkus Friedl
2002-03-23setproctitle() after preauth child; ok markus@Kevin Steves
2002-03-21add privsep_preauth() and remove 1 goto; ok provos@Markus Friedl
2002-03-20strerror() on chdir() fail; ok provos@Kevin Steves
2002-03-20for unprivileged user, group do:Kevin Steves
2002-03-19KNF whitespaceMarkus Friedl
2002-03-19clean up prototypesMarkus Friedl
2002-03-19_PATH_PRIVSEP_CHROOT_DIR; ok provos@Kevin Steves
2002-03-18integrate privilege separated openssh; its turned off by default for now.Niels Provos
2002-03-18have the authentication functions return the authentication contextNiels Provos
2002-03-14split out ssh1 session key decryption; ok provos@Markus Friedl
2002-02-27remove unneeded casts in [gs]etsockopt(); ok markus@Kevin Steves
2002-02-24use u_char* here; ok markus@Kevin Steves
2002-02-11include md5.h not hmac.hMarkus Friedl
2002-02-11do not complain about port > 1024 if rhosts-auth is disabledMarkus Friedl
2002-02-04add SYSLOG_FACILITY_NOT_SET = -1, SYSLOG_LEVEL_NOT_SET = -1,Markus Friedl
2002-01-13use buffer API and avoid static strings of fixed size; ok provos@/mouring@Markus Friedl
2001-12-28packet_read* no longer return the packet length, since it's not used.Markus Friedl
2001-12-28packet_get_bignum* no longer returns a sizeMarkus Friedl
2001-12-28s/packet_done/packet_check_eom/ (end-of-message); ok djm@Markus Friedl
2001-12-27get rid of packet_integrity_check, use packet_done() instead.Markus Friedl
2001-12-27call fatal() for openssl allocation failuresMarkus Friedl
2001-12-19basic KNF done while i was looking for something elseTheo de Raadt
2001-12-10possible fd leak on error; ok markus@Kevin Steves