Age | Commit message (Collapse) | Author | |
---|---|---|---|
1997-08-19 | Only print bad dynamic ports list for udp and tcp since that's all | Todd C. Miller | |
that exist. This fixes a bug where net.inet.ip.redirect, net.inet.ip.directed-broadcast, and net.inet.tcp.keepinittimem got interpreted as dynamic port lists. Oops. | |||
1997-08-18 | #include <string.h> not <strings.h> -- Yes, I'm a weanie... | Todd C. Miller | |
1997-08-13 | handle ext2fs specially | Theo de Raadt | |
1997-08-11 | Add extra off_t casts for paranoia and because I don't have a large | Todd C. Miller | |
filesystem to prove that it is *not* necesary. | |||
1997-08-09 | The list of tcp/udp ports not to allocate dynamically is now | Todd C. Miller | |
a bitmask configurable via sysctl([38]). The default values have not changed. If one wants to change the list it should be done early on in /etc/rc. | |||
1997-08-09 | struct statfs uses a signed short f_flags field. This field is used in | Niklas Hallqvist | |
the long (the type) expression that makes up the mount flags field passed to mount(2). If we are dealing with a noatime mount this means sign extension will occur and the flag field will get messed up. I.e. noatime mounts (at least rw ones) ended up not exportable. I fixed this by casting to u_short in the expressions, but I would like to change struct statfs instead, but that is an API issue it is not for me to decide on. I also added error decoding in two syslog calls. This was made possible by the arglist heuristics printout of OpenBSD/alpha DDB :-) | |||
1997-08-06 | do not clobber errno in signal handlers | Theo de Raadt | |
1997-08-05 | Save/restore the errno when handling interrupts. | Angelos D. Keromytis | |
1997-08-04 | save errno in sigchld handlers | Theo de Raadt | |
1997-08-01 | yuck | Theo de Raadt | |
1997-07-30 | new routed DOES NOT EVEN COMPILE LET ALONE WORK. TEST YOUR WORK! | Theo de Raadt | |
Also, put back the damn security check in input.c that has been deleted TWO SEPERATE TIMES NOW! I CURSE anyone who deletes that check again. | |||
1997-07-30 | update to sgi-02apr97 | Michael Shalayeff | |
still have problems w/ defaults from pppd | |||
1997-07-28 | typos | Niklas Hallqvist | |
1997-07-28 | boot1[] only needed if NUMBOOT > 1; frueauf@ira.uka.de | Theo de Raadt | |
1997-07-27 | Xr rcmd 3 | Theo de Raadt | |
1997-07-26 | support for noipsec routes. use -1 or p0 at fespah. | Niels Provos | |
1997-07-26 | reserve SPIs for correct protos: ah and/or esp. | Niels Provos | |
1997-07-25 | #if __STDC__ --> #ifdef __STDC__ | Michael Shalayeff | |
1997-07-25 | initialize variable!! found by mickey | Niels Provos | |
1997-07-25 | word choice | kstailey | |
1997-07-25 | correct -d typo | kstailey | |
1997-07-25 | do -d for reboot and halt | Michael Shalayeff | |
1997-07-25 | -Wall | Michael Shalayeff | |
1997-07-24 | new symmetric identity choice. fix bug with expired exchange values on | Niels Provos | |
multiple exchanges. a bit more documentation. drop -f flag and have -c with opposite meaning instead. include responder offered schemes into responder cookie calculation. | |||
1997-07-23 | tunnel,lifetimes,hostname via startkey/startup | Niels Provos | |
errors to stderr before daemon, to syslog afterwards | |||
1997-07-22 | tabify, use NULL for ptr ops, not 0 | kstailey | |
1997-07-22 | re-tabify (angelos!) | kstailey | |
1997-07-22 | talk about grok | Niels Provos | |
1997-07-22 | make startkey grok more, make users grok more + tiny protocol fixes. | Niels Provos | |
1997-07-20 | move NOMAN into programs Makefile | Niels Provos | |
1997-07-19 | some KNF I had lying around | Niklas Hallqvist | |
1997-07-19 | minor cleanup. | Niels Provos | |
1997-07-18 | include new dirs. remove bogus trailer. | Niels Provos | |
1997-07-18 | make photurisd start an exchange | Niels Provos | |
1997-07-18 | initial import of the photuris keymanagement daemon | Niels Provos | |
1997-07-15 | sysctl for PF_ENCAP. | Angelos D. Keromytis | |
1997-07-14 | that was not a nice change | Theo de Raadt | |
1997-07-14 | change the output so that it fits into 80 columns | Thomas Graichen | |
1997-07-14 | typo | Niels Provos | |
1997-07-14 | Fixed typo (missing "any" in example rule). | Angelos D. Keromytis | |
1997-07-13 | Cleanup, made argument order a bit more sane. | Angelos D. Keromytis | |
1997-07-13 | Simplified use. | Angelos D. Keromytis | |
1997-07-13 | Added -encap flag for flushing, added a missing break; in flushing X25 | Angelos D. Keromytis | |
entries. | |||
1997-07-13 | Typo correction. | Angelos D. Keromytis | |
1997-07-11 | reflect changes in kernel ipsec | Niels Provos | |
1997-07-08 | countbits() uses network byte order, not host byte order; enami tsugutomo, ↵ | kstailey | |
NetBSD PR 3830 | |||
1997-07-06 | As we parse MBRs on alpha, why not? | Niklas Hallqvist | |
1997-07-06 | Explicit typing | Niklas Hallqvist | |
1997-07-05 | NULL vs 0 confusion | Theo de Raadt | |
1997-07-05 | vprintf -> Vprintf and dprintf -> Dprintf to avoid confusion | Todd C. Miller | |
Use err/errx and warn/warnx where it makes sense. Some sprintf -> snprintf, strcpy -> strncpy, and strcat -> strncat. Honor $TMPDIR (based on changes from NetBSD) Use __progname not "restore" (we could be called as rrestore). Some -Wall happiness. |