Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-10-06 | sys/resource.h needs sys/time.h; prompted by brad@ | Damien Miller | |
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 | clean extra spaces | Kevin Steves | |
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-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-12 | move #include <stddef.h> out of includes.h | Kevin Steves | |
2006-07-12 | move #include <netdb.h> out of includes.h; ok djm@ | Kevin Steves | |
2006-07-11 | need <errno.h> here also (it's also included in <openssl/err.h>) | Kevin Steves | |
2006-07-11 | cast asterisk field precision argument to int to remove warning; | Kevin Steves | |
ok markus@ | |||
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-11 | Only copy the part of environment variable that we actually use. Prevents | Darren Tucker | |
ssh bailing when SendEnv is used and an environment variable with a really long value exists. ok djm@ | |||
2006-07-09 | move #include <fcntl.h> out of includes.h | Kevin Steves | |
2006-07-08 | move #include <sys/socket.h> out of includes.h | Kevin Steves | |
2006-07-06 | move #include <pwd.h> out of includes.h; ok markus@ | Kevin Steves | |
2006-07-03 | move #include "version.h" out of includes.h; ok markus@ | Kevin Steves | |
2006-07-02 | more details and clarity for tun(4) device forwarding; ok and help | Kevin Steves | |
jmc@ | |||
2006-04-25 | Prevent ssh from trying to open private keys with bad permissions more than | Darren Tucker | |
once or prompting for their passphrases (which it subsequently ignores anyway), similar to a previous change in ssh-add. bz #1186, ok djm@ | |||
2006-03-30 | add percent escape chars to the IdentityFile option, bz #1159 based | Damien Miller | |
on a patch by imaging AT math.ualberta.ca; feedback and ok dtucker@ | |||
2006-03-28 | 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 | be strict with tolower() casting | Theo de Raadt | |
2006-03-20 | annoying spacing fixes getting in the way of real diffs | Theo de Raadt | |
2006-03-20 | sprinkle u_int throughout pty subsystem, ok markus | Theo de Raadt | |
2006-03-19 | spacing | Theo de Raadt | |
2006-03-19 | RCSID() can die | Theo de Raadt | |
2006-03-12 | knf nit | Damien Miller | |
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-20 | move #include <sys/un.h> out of includes.h; ok djm@ | Kevin Steves | |
2006-02-12 | add a %l expansion code to the ControlPath, which is filled in with the | Damien Miller | |
local hostname at runtime. Requested by henning@ to avoid some problems with /home on NFS; ok dtucker@ | |||
2006-02-10 | move #include <sys/ioctl.h> out of includes.h; ok markus@ | Kevin Steves | |
2006-02-08 | move #include <sys/resource.h> out of includes.h; ok markus@ | Kevin Steves | |
2006-02-08 | move #include <paths.h> out of includes.h; ok markus@ | Kevin Steves | |
2005-12-20 | exit(255) on error to match description in ssh(1); bz #1137; ok deraadt@ | Darren Tucker | |
2005-12-08 | two changes to the new ssh tunnel support. this breaks compatibility | Reyk Floeter | |
with the initial commit but is required for a portable approach. - make the tunnel id u_int and platform friendly, use predefined types. - support configuration of layer 2 (ethernet) or layer 3 (point-to-point, default) modes. configuration is done using the Tunnel (yes|point-to-point|ethernet|no) option is ssh_config(5) and restricted by the PermitTunnel (yes|point-to-point|ethernet|no) option in sshd_config(5). ok djm@, man page bits by jmc@ | |||
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-30 | fix misleading debug message; ok dtucker@ | Damien Miller | |
2005-10-14 | no trailing "\n" for log functions; ok djm@ | Kevin Steves | |
2005-09-19 | update -D usage here too; | Jason McIntyre | |
2005-09-13 | ensure that stdio fds are attached; ok deraadt@ | Damien Miller | |
2005-07-30 | fix -D listen_host initialisation, so it picks up gateway_ports setting | Damien Miller | |
correctly | |||
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-25 | do the default port filling code a few lines earlier, so it really does fix %p | Damien Miller | |
2005-06-18 | allow ControlPath=none, patch from dwmw2 AT infradead.org; ok dtucker@ | Damien Miller | |