summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/serverloop.c
AgeCommit message (Expand)Author
2006-03-25spacingTheo de Raadt
2006-03-25Put $OpenBSD$ tags back (as comments) to replace the RCSID()s thatDamien Miller
2006-03-20spacingTheo de Raadt
2006-03-20sprinkle u_int throughout pty subsystem, ok markusTheo de Raadt
2006-03-19ARGSUSED for signal handlersTheo de Raadt
2006-03-19RCSID() can dieTheo de Raadt
2006-03-19memory leaks detected by Coverity via elad AT netbsd.org;Damien Miller
2006-03-04move a debug() outside of a signal handler; ok markus@ a little while backDamien Miller
2006-02-20move #include <signal.h> out of includes.h; ok markus@Kevin Steves
2006-02-10move #include <sys/wait.h> out of includes.h; ok markus@Kevin Steves
2006-02-07move #include <termios.h> out of includes.h; ok markus@Kevin Steves
2005-12-13if forced_tun_device is not set, it is -1 and not SSH_TUNID_ANYReyk Floeter
2005-12-08two changes to the new ssh tunnel support. this breaks compatibilityReyk Floeter
2005-12-06Add support for tun(4) forwarding over OpenSSH, based on an idea andReyk Floeter
2005-10-31make sure we clean up wtmp, etc. file when we receive a SIGTERM,Damien Miller
2005-10-30no need to escape single quotes in comments, no binary changeDamien Miller
2005-10-10fix regression I introduced in 4.2: X11 forwardings initiated afterDamien Miller
2005-07-17knf says that a 2nd level indent is four (not three or five) spacesDamien Miller
2004-08-11some signed/unsigned int comparison cleanups; markus@ okAnil Madhavapeddy
2004-05-21bz #756: add support for the cancel-tcpip-forward request for the server andDamien Miller
2004-01-19fix mem leaks; some fixes from Pete Flugstad; tested dtucker@Markus Friedl
2003-12-09make ClientKeepAlive work for ssh -N, too (no login shell requested).Markus Friedl
2003-11-18Correct check for authctxt->valid. ok djm@Darren Tucker
2003-11-04standardise arguments to auth methods - they should all take authctxt.Damien Miller
2003-09-23replace fatal_cleanup() and linked list of fatal callbacks with staticMarkus Friedl
2003-06-24int -> u_int; ok djm@, deraadt@, mouring@Markus Friedl
2003-06-04remove bitrotten commet; ok markus@Damien Miller
2003-05-11make channel_new() strdup the 'remote_name' (not the caller); ok theoMarkus Friedl
2003-04-02reapply rekeying chage, tested by henning@, ok djm@Markus Friedl
2003-04-01backout rekeying changes (for 3.6.1)Markus Friedl
2003-04-01rekeying bugfixes and automatic rekeying:Markus Friedl
2002-09-19log IP address also; ok markus@Kevin Steves
2002-06-24move channel counter to u_intMarkus Friedl
2002-06-11pid_t cleanup. Markus need this now to keep hacking.Mike Pechkin
2002-03-30check waitpid for EINTR; based on patch from peter@ifm.liu.seMarkus Friedl
2002-03-24remove unused debugMarkus Friedl
2002-03-18integrate privilege separated openssh; its turned off by default for now.Niels Provos
2002-02-06channel_new never returns NULL, mouring@; ok djm@Markus Friedl
2002-02-03don't use channel_input_channel_request and callbackMarkus Friedl
2002-01-31no need for WNOHANG; ok stevesk@Markus Friedl
2002-01-16wrapper for channel_setup_fwd_listenerMarkus Friedl
2002-01-10skip client_alive_check until there are channels; ok beck@Markus Friedl
2001-12-28remove plen from the dispatch fn. it's no longer used.Markus Friedl
2001-12-28packet_read* no longer return the packet length, since it's not used.Markus 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-21remove ifdef for USE_PIPES since fdin != fdout; ok djm@Markus Friedl
2001-12-20Conformance fix: we should send failing packet sequence number whenDamien Miller
2001-12-19fix race between SIGCHLD and select with an additional pipe. writingMarkus Friedl
2001-12-19basic KNF done while i was looking for something elseTheo de Raadt