Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-07-26 | Mini KNF. No binary changes. | Marcus Glocker | |
2006-07-26 | Fixing several timeout quirks at tftpd and tftp: | Marcus Glocker | |
- move TIMEOUT* defines to arpa/tftp.h, as they are used several times in tftpd and tftp, and the values are part of the RFC definition. - tftpd and tftp did count the total retransmission time in retries instead in seconds. fixed. - tftpd rexmt timeout was hardcoded by a define and therefore didn't changed when the timeout option was sent. fixed. - limit total retransmission timeout in tftp to also 255 seconds. - replace obvious atoi()'s by strtonum(). ok claudio@ | |||
2006-07-26 | move #include <sys/param.h> out of includes.h | Kevin Steves | |
2006-07-25 | Add bfirstlp(), blastlp() macros, returning the first and last lines | Kjell Wooding | |
of a buffer respectively. Removes an ugly construction than necessitated "go to first line"-type comments throughout the code. No binary change | |||
2006-07-25 | Rename the header line of a buffer to b_headp, from the remarkably | Kjell Wooding | |
unintuitive b_linep. No binary change. | |||
2006-07-25 | move #include <sys/time.h> out of includes.h | Kevin Steves | |
2006-07-25 | need #include <string.h> | Kevin Steves | |
2006-07-24 | eliminate hyphen madness; | Jason McIntyre | |
2006-07-24 | tweaks; | Jason McIntyre | |
2006-07-24 | Adding TFTP Option Extension to the tftp client according to RFC 2347. | Marcus Glocker | |
Implemented options are: - TFTP Blocksize Option, RFC 2348 - TFTP Timeout Interval and Transfer Size Options, RFC 2349 We have now on the tftp client side the same options supported as in our tftp server. ok claudio@ | |||
2006-07-24 | Use 'cp -R' instead of 'cp -r' in the example of the -J option. | Bernd Ahlers | |
ok jmc@ | |||
2006-07-24 | disable tunnel forwarding when no strict host key checking | Kevin Steves | |
and key changed; ok djm@ markus@ dtucker@ | |||
2006-07-23 | #include <signal.h> for sig_atomic_t; need this prior to <sys/param.h> | Kevin Steves | |
move | |||
2006-07-22 | move #include <string.h> out of includes.h | Kevin Steves | |
2006-07-22 | move #include <time.h> out of includes.h | Kevin Steves | |
2006-07-21 | ARGSUSED for signal handler | Kevin Steves | |
2006-07-21 | more ARGSUSED (lint) for dispatch table-driven functions; ok djm@ | Kevin Steves | |
2006-07-21 | Make PermitOpen take a list of permitted ports and act more like most other | Darren Tucker | |
keywords (ie the first match is the effective setting). This also makes it easier to override a previously set PermitOpen. ok djm@ | |||
2006-07-21 | Revert; keywords did not expand. | Ray Lai | |
2006-07-21 | Add binary file support to rcs_expand_keywords(), using BUFs instead | Ray Lai | |
of C strings. OK niallo@ | |||
2006-07-20 | missed some needed #include <unistd.h> when KERBEROS5=no; issue from | Kevin Steves | |
massimo@cedoc.mo.it | |||
2006-07-20 | Chad Dougherty <crd@andrew.cmu.edu> teaches me how to spell 'supported' ↵ | Joris Vink | |
correctly | |||
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 |