Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-07-08 | Disallow manual security associations that use AES-CTR, AES-GCM, | Christian Weisgerber | |
or AES-GMAC. These algorithms cannot be used safely with static keys and RFCs 3686, 4106, and 4543 expressly forbid such configurations. Also include a tweak (with jmc@) to the key size explanation, for completeness sake. ok mikeb@ | |||
2012-07-08 | New attempt to make the -P flag work with -ss, so that states can be | Lawrence Teo | |
printed with port names if desired. tcpdump's pf_print_state.c has diverged significantly from pfctl's, so the change to tcpdump's pf_print_state.c is not exactly the same as pfctl's. ok henning sthen | |||
2012-07-08 | Split out an ask_pid() function rather than over-parameterizing the | Kenneth R Westerback | |
ask_num() function. Remove now unneeded 'flags' and 'help' parameters from both. Display out of range values in hex in ask_pid(), since we are seeking hex input. ok guenther@ | |||
2012-07-08 | fix capitalisation of MODMONO_INSTAlL_TARGET | Stuart Henderson | |
2012-07-08 | zap weird precision (if provided) that's not really relevant to anything | Marc Espie | |
2012-07-08 | remove extraneous line; | Jason McIntyre | |
2012-07-08 | kevent(EV_DELETE) shouldn't be calling closef(), as that releases POSIX | Philip Guenthe | |
file locks. c.f. regress/sys/kern/kqueue/kqueue-flock.c ok krw@ | |||
2012-07-08 | avoid line splitting; also, one an -> a | Jason McIntyre | |
2012-07-08 | Use IO_NOLIMIT instead of munging the process's limits | Philip Guenthe | |
ok beck@ | |||
2012-07-08 | implement res_querydomain() required by sendmail | Eric Faurot | |
2012-07-08 | implement -Tman .An | Ingo Schwarze | |
also reset -[no]split mode at .Sh AUTHORS in -Tascii | |||
2012-07-08 | Instead of casting interface address pointers, use the macros NULL | Alexander Bluhm | |
and ifatoia(). No binary diff. OK blambert@ henning@ claudio@ | |||
2012-07-08 | Don't need to worry about the ATI driver here anymore. | Mark Kettenis | |
2012-07-08 | Add choose-tree command to show windows and sessions in the same | Nicholas Marriott | |
list. Change choose-window and -session to use the same code. From Thomas Adam. | |||
2012-07-08 | The algorithm name is "SHA-256" as per FIPS 180-2 (-3). | Christian Weisgerber | |
2012-07-08 | Switch diff(1) binary file detection from !(isprint() || isspace()) to | Stefan Sperling | |
checking for embedded NULs, as was done for grep(1) some time ago. Avoids problems with e.g. latin1-encoded files being treated as binary, since isprint() uses only ASCII by default and diff(1) doesn't call setlocale(). prodded by and ok bluhm | |||
2012-07-08 | - plug text_to_relayhost() in parse.y to support relay URLs. | Gilles Chehade | |
- document the new URL syntax in smtpd.conf.5 - replace starttls:// schema with tls:// Beware, "relay via" rules should now be expressed with a relay URL: accept [...] relay via "mx1.example.org" smtps port 465 becomes accept [...] relay via "smtps://mx1.example.org" This will allow using mappings of relays with different protocols and options. Make sure to update your smtpd.conf if you relay via ! ok eric, ok chl | |||
2012-07-08 | Add flags to insert a .sp or .br request before the next output, | Ingo Schwarze | |
shortening some frequent idioms and preparing for better vertical spacing in the SYNOPSIS; no functional change intended. | |||
2012-07-08 | Sort SRCS list. | Nicholas Marriott | |
2012-07-08 | Instead of adding one integer variable for each global boolean output flag | Ingo Schwarze | |
and passing around a structure containing them into each and every function, just use a single static bitfield. In preparation for adding more output flags to support more features. | |||
2012-07-08 | Return EROFS when a read-write mount of a read-only sd(4) device | Kenneth R Westerback | |
is attempted. This is instead of the current EACCES and is intended to result in better error messages from mount(8). Tweak default EROFS error text to mention fsck'ing in mount_ext2fs and mount_msdos since they both have fsck's like ffs. ok deraadt@ aja@ ian@ phessler@ | |||
2012-07-08 | Make hibernate_free() safe to be called even if hibernate areas | Theo de Raadt | |
allocation failed ok mlarkin | |||
2012-07-08 | implement -Tman .Va | Ingo Schwarze | |
and fix -Tman .Vt for the non-SYNOPSIS case | |||
2012-07-08 | auth_bsd() is static | Gilles Chehade | |
2012-07-08 | Increase maximum number of tun interfaces to 8. | giovanni | |
ok yasuoka@ | |||
2012-07-08 | add stub function for gethostent(), and move things around a bit while here. | Eric Faurot | |
2012-07-08 | Add a test for kevent(EV_DELETE) screwing with POSIX file locks | Philip Guenthe | |
2012-07-08 | - move some more stuff into OSConfig | Jasper Lievisse Adriaanse | |
- zap references to variables that don't exist anymore ok espie@ | |||
2012-07-08 | Call Xsetpid() to edit the partition type from Xedit() rather than | Kenneth R Westerback | |
duplicating the code. Allows simplification of the EDIT() #define in Xedit() since we always ASK_DEC and use a NULL help parameter when invoking ask_num(). | |||
2012-07-08 | Reorganize some hibernate functions for easier readability. | Mike Larkin | |
Fix some incorrect/old comments. ok deraadt@ | |||
2012-07-08 | remove unused functions, ok phessler | Stuart Henderson | |
2012-07-08 | if you use nitems() in userland, you must define it yourself | Theo de Raadt | |
discussed with guenther | |||
2012-07-08 | Enhance the blocking test and add a test for closing while half-open | Philip Guenthe | |
2012-07-08 | Nuke useless EDIT() #define in Xsetpid. | Kenneth R Westerback | |
A #define to simplify a function calling snippet does not simply or help when it is used only once. | |||
2012-07-08 | a -> an in a comment | Bret Lambert | |
ok phessler@ | |||
2012-07-08 | preparation for handling permuted options | Marc Espie | |
2012-07-08 | ouch, in the SYNOPSIS, .Vt is a block, | Ingo Schwarze | |
so avoid printing pointless goo in -Tman | |||
2012-07-08 | implement -Tman .Vt | Ingo Schwarze | |
2012-07-08 | Don't hold the fd-table lock across vn_open(), as opening a FIFO may block. | Philip Guenthe | |
Having done that, dupfdopen() has to handle a possible race. ok matthew@ krw@ | |||
2012-07-08 | Add support for advertising dns servers and search paths in router | Peter Hessler | |
advertisements, according to RFC 6106. original diff from Stephane A. Sezer on tech@, many thanks! OK phessler@, todd@ | |||
2012-07-08 | a few big changes | Marc Espie | |
- start using our options parser for main libtool options - put link related stuff into their own module. Long term, some unification should happen. - shortdie for cases where we know libtool is not at fault. | |||
2012-07-08 | stupid | Marc Espie | |
2012-07-08 | Zap extra spaces from function pointer arguments | Philip Guenthe | |
Pointed out by Joachim Schipper (joachim at joachimschipper.nl) | |||
2012-07-08 | Handle the O_ACCMODE bits correctly, so that O_RDONLY is displayed | Philip Guenthe | |
even when other flag bits are set ok otto@ | |||
2012-07-08 | new sentence, new line; | Jason McIntyre | |
2012-07-08 | Basic implementation of -Tman .Fo and .Fa; | Ingo Schwarze | |
again, some blank lines still missing from the output. While here, remove the trailing semicolon from .Fn when outside .Sh SYNOPSIS. | |||
2012-07-08 | Describe tdelete()'s return value correctly and update the related CAVEAT | Philip Guenthe | |
Based on a note from Steffen Daode Nurpmeso (sdaoden at googlemail.com) ok jmc@ | |||
2012-07-08 | specialized option handler that will make things simpler | Marc Espie | |
2012-07-08 | Replace tricker atoi() and hand rolled parsing with strsep() and | Kenneth R Westerback | |
strtonum(). Make related error messages consistant. ok haesbaert@ | |||
2012-07-08 | Move functionality from ask() to _ask() to make the latter more useful | Alexander Hall | |
from other places. ok krw@ |