Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-10-11 | exit instead of doing a blocking tcp send if we detect a client/server timeout, | Markus Friedl | |
since the tcp sendqueue might be already full (of alive requests); ok dtucker, report mpf | |||
2006-08-03 | almost entirely get rid of the culture of ".h files that include .h files" | Theo de Raadt | |
ok djm, sort of ok stevesk makes the pain stop in one easy step | |||
2006-08-01 | move #include <stdio.h> out of includes.h | Kevin Steves | |
2006-07-26 | move #include <stdlib.h> out of includes.h | Kevin Steves | |
2006-07-26 | move #include <sys/param.h> out of includes.h | Kevin Steves | |
2006-07-25 | move #include <sys/time.h> out of includes.h | Kevin Steves | |
2006-07-22 | move #include <string.h> out of includes.h | Kevin Steves | |
2006-07-17 | move #include <unistd.h> out of includes.h | Kevin Steves | |
2006-07-11 | move #include <errno.h> out of includes.h; ok markus@ | Kevin Steves | |
2006-07-11 | add ExitOnForwardFailure: terminate the connection if ssh(1) | Markus Friedl | |
cannot set up all requested dynamic, local, and remote port forwardings. ok djm, dtucker, stevesk, jmc | |||
2006-07-08 | move #include <sys/socket.h> out of includes.h | Kevin Steves | |
2006-07-02 | use -KR[bind_address:]port here; ok djm@ | Kevin Steves | |
2006-06-26 | mention optional bind_address in runtime port forwarding setup | Damien Miller | |
command-line help. patch from santhi.amirta AT gmail.com | |||
2006-05-16 | missing free; from Kylene Hall | Markus Friedl | |
2006-04-20 | replace the last non-sig_atomic_t flag used in a signal handler with a | Damien Miller | |
sig_atomic_t, unfortunately with some knock-on effects in other (non- signal) contexts in which it is used; ok markus@ | |||
2006-03-25 | spacing | Theo de Raadt | |
2006-03-25 | Put $OpenBSD$ tags back (as comments) to replace the RCSID()s that | Damien Miller | |
Theo nuked - our scripts to sync -portable need them in the files | |||
2006-03-25 | introduce xcalloc() and xasprintf() failure-checked allocations functions | Damien Miller | |
and use them throughout openssh xcalloc is particularly important because malloc(nmemb * size) is a dangerous idiom (subject to integer overflow) and it is time for it to die feedback and ok deraadt@ | |||
2006-03-20 | sprinkle u_int throughout pty subsystem, ok markus | Theo de Raadt | |
2006-03-19 | ARGSUSED for signal handlers | Theo de Raadt | |
2006-03-19 | RCSID() can die | Theo de Raadt | |
2006-02-22 | move #include <ctype.h> out of includes.h; ok djm@ | Kevin Steves | |
2006-02-20 | move #include <sys/stat.h> out of includes.h; ok markus@ | Kevin Steves | |
2006-02-20 | move #include <signal.h> out of includes.h; ok markus@ | Kevin Steves | |
2006-02-10 | move #include <sys/ioctl.h> out of includes.h; ok markus@ | Kevin Steves | |
2006-02-08 | move #include <paths.h> out of includes.h; ok markus@ | Kevin Steves | |
2006-02-07 | move #include <termios.h> out of includes.h; ok markus@ | Kevin Steves | |
2005-12-30 | add channel output filter interface. | Reyk Floeter | |
ok djm@, suggested by markus@ | |||
2005-12-28 | use 'break-in' for consistency; ok deraadt@ ok and input jmc@ | Kevin Steves | |
2005-12-07 | reyk forgot to compile with -Werror (missing header) | Damien Miller | |
2005-12-06 | Add support for tun(4) forwarding over OpenSSH, based on an idea and | Reyk Floeter | |
initial channel code bits by markus@. This is a simple and easy way to use OpenSSH for ad hoc virtual private network connections, e.g. administrative tunnels or secure wireless access. It's based on a new ssh channel and works similar to the existing TCP forwarding support, except that it depends on the tun(4) network interface on both ends of the connection for layer 2 or layer 3 tunneling. This diff also adds support for LocalCommand in the ssh(1) client. ok djm@, markus@, jmc@ (manpages), tested and discussed with others | |||
2005-10-30 | no need to escape single quotes in comments, no binary change | Damien Miller | |
2005-10-14 | free()->xfree(); ok djm@ | Kevin Steves | |
2005-10-10 | fix regression I introduced in 4.2: X11 forwardings initiated after | Damien Miller | |
a session has exited (e.g. "(sleep 5; xterm) &") would not start. bz #1086 reported by t8m AT centrum.cz; ok markus@ dtucker@ | |||
2005-09-09 | typo; from mark at mcs.vuw.ac.nz, bug #1082 | Markus Friedl | |
2005-07-16 | spacing | Damien Miller | |
2005-07-04 | implement support for X11 and agent forwarding over multiplex slave | Damien Miller | |
connections. Because of protocol limitations, the slave connections inherit the master's DISPLAY and SSH_AUTH_SOCK rather than distinctly forwarding their own. ok dtucker@ "put it in" deraadt@ | |||
2005-06-17 | make this -Wsign-compare clean; ok avsm@ markus@ | Damien Miller | |
2005-06-16 | move x11_get_proto from ssh.c to clientloop.c, to make muliplexed xfwd easier | Damien Miller | |
later; ok deraadt@ | |||
2005-06-08 | add ControlMaster=auto/autoask options to support opportunistic multiplexing; | Damien Miller | |
tested avsm@ and jakob@, ok markus@ | |||
2005-03-10 | spacing | Theo de Raadt | |
2005-03-01 | bz#413: allow optional specification of bind address for port forwardings. | Damien Miller | |
Patch originally by Dan Astorian, but worked on by several people Adds GatewayPorts=clientspecified option on server to allow remote forwards to bind to client-specified ports. ok markus@ | |||
2004-11-07 | add basic control of a running multiplex master connection; including the | Damien Miller | |
ability to check its status and request it to exit; ok markus@ | |||
2004-10-29 | factor out common permission-asking code to separate function; ok markus@ | Damien Miller | |
2004-10-29 | fix some window size change bugs for multiplexed connections: windows sizes | Damien Miller | |
were not being updated if they had changed after ~^Z suspends and SIGWINCH was not being processed unless the first connection had requested a tty; ok markus | |||
2004-09-07 | cleanup multiplex control socket on SIGHUP too, spotted by sturm@ | Damien Miller | |
ok markus@ deraadt@ | |||
2004-08-11 | some signed/unsigned int comparison cleanups; markus@ ok | Anil Madhavapeddy | |
2004-07-11 | spaces | Theo de Raadt | |
2004-06-18 | clientloop.c | Damien Miller | |
2004-06-17 | Add option for confirmation (ControlMaster=ask) via ssh-askpass before opening | Damien Miller | |
shared connections; ok markus@ |