Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-07-20 | Add blksize option support for tftpd according to RFC 2348. | Marcus Glocker | |
Note: While testing the new option, we noticed that our stable tftpd has a problem if any option is set (e.g. tsize) and you try to put a file. This has nothing todo with our new blksize option. We fix this as next. ok claudio@ | |||
2006-07-19 | Add ForceCommand keyword to sshd_config, equivalent to the "command=" | Darren Tucker | |
key option, man page entry and example in sshd_config. Feedback & ok djm@, man page corrections & ok jmc@ | |||
2006-07-19 | Add support for X11Forwaring, X11DisplayOffset and X11UseLocalhost to | Darren Tucker | |
Match. ok djm@ | |||
2006-07-18 | remove unneeded includes; ok djm@ | Kevin Steves | |
2006-07-18 | Sync with current | Ian Darwin | |
2006-07-18 | Remove obsolete | Ian Darwin | |
2006-07-18 | Documentation-only change: sync with current version | Ian Darwin | |
2006-07-18 | Sync copyright date | Ian Darwin | |
2006-07-18 | Clarify description of Match, with minor correction from jmc@ | Darren Tucker | |
2006-07-18 | mark up angle brackets; | Jason McIntyre | |
2006-07-18 | replace DIAGNOSTICS with .Ex; | Jason McIntyre | |
2006-07-18 | tweak; ok dtucker | Jason McIntyre | |
2006-07-17 | please lint | Theo de Raadt | |
2006-07-17 | include prompts in examples; | Jason McIntyre | |
2006-07-17 | Fix comment wrt snprintf | Todd C. Miller | |
2006-07-17 | Add csplit(1) from FreeBSD; with man page tweaks from jmc@. | Todd C. Miller | |
OK deraadt@ | |||
2006-07-17 | These bugs were fixed long ago. | Kjell Wooding | |
2006-07-17 | Better usage() wording. Add -h to mean same. Some whitespace clean | Kjell Wooding | |
2006-07-17 | Add PermitOpen directive to sshd_config which is equivalent to the | Darren Tucker | |
"permitopen" key option. Allows server admin to allow TCP port forwarding only two specific host/port pairs. Useful when combined with Match. If permitopen is used in both sshd_config and a key option, both must allow a given connection before it will be permitted. Note that users can still use external forwarders such as netcat, so to be those must be controlled too for the limits to be effective. Feedback & ok djm@, man page corrections & ok jmc@. | |||
2006-07-17 | Use '\0' rather than 0 to terminates strings; ok djm@ | Darren Tucker | |
2006-07-17 | move #include <unistd.h> out of includes.h | Kevin Steves | |
2006-07-15 | - .Sq for single letters | Jason McIntyre | |
- use .Ex | |||
2006-07-15 | - update posix spec reference | Jason McIntyre | |
- note that -f is an extension (to said..); from andracs ok millert | |||
2006-07-14 | don't need incompletely-typed 'struct passwd' now with | Kevin Steves | |
#include <pwd.h>; ok markus@ | |||
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-12 | knf. no binary change. | Marcus Glocker | |
ok beck@ claudio@ | |||
2006-07-12 | - new sentence, new line | Jason McIntyre | |
- s/The the/The/ - kill a bad comma | |||
2006-07-12 | Add support for conditional directives to sshd_config via a "Match" keyword, | Darren Tucker | |
which works similarly to the "Host" directive in ssh_config. Lines after a Match line override the default set in the main section if the condition on the Match line is true, eg AllowTcpForwarding yes Match User anoncvs AllowTcpForwarding no will allow port forwarding by all users except "anoncvs". Currently only a very small subset of directives are supported. ok djm@ | |||
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 | 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-11 | fix out of bound read in rcs_expand_keywords(); ok niallo | Markus Friedl | |
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-10 | move #include <stdarg.h> out of includes.h; ok markus@ | Kevin Steves | |
2006-07-10 | s/and and/and/ | Jason McIntyre | |
2006-07-10 | buffer.h only needed in sftp-common.h and remove some unneeded | Kevin Steves | |
user includes; ok djm@ | |||
2006-07-10 | if you add birth -- you add death too; also add dostoyevski dude | Michael Shalayeff | |
2006-07-10 | Nikola Tesla | Martin Reindl | |
2006-07-10 | Add port identifier to known_hosts for non-default ports, based originally | Darren Tucker | |
on a patch from Devin Nate in bz#910. For any connection using the default port or using a HostKeyAlias the format is unchanged, otherwise the host name or address is enclosed within square brackets in the same format as sshd's ListenAddress. Tested by many, ok markus@. | |||
2006-07-10 | fix misparsing of SOCKS 5 packets that could result in a crash; | Damien Miller | |
reported by mk@ ok markus@ | |||
2006-07-10 | duplicate argv at the start of main() because it gets modified later; | Damien Miller | |
pointed out by deraadt@ ok markus@ | |||
2006-07-10 | don't log variables that aren't yet set | Damien Miller | |
2006-07-10 | remove optind - it isn't used here | Damien Miller | |
2006-07-10 | handle 0 sized files correctly, tested by brad@ thanks | Joris Vink | |
2006-07-09 | Two fixes: | Michael Knudsen | |
o Prevent a config reload from always happening after the first round of command execution. o Make sure config reload works when daemonised by requiring an absolute path to the config file. From NetBSD. Ok brad. | |||
2006-07-09 | *enty->*ently where applicable | Miod Vallat | |
2006-07-09 | use O_RDONLY vs. 0 in open(); no binary change | Kevin Steves | |
2006-07-09 | move #include <fcntl.h> out of includes.h | Kevin Steves | |