Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-06-25 | Do not clear PSR_SER on 88110 when leaving single-stepping mode. | Miod Vallat | |
2004-06-25 | provide mask2prefixlen6() and prefixlen2mask6() | Henning Brauer | |
2004-06-25 | remove netiso | Henning Brauer | |
2004-06-25 | Remove HAVE_GETNAMEINFO alternate code. Compiled binary is unchanged. | Ryan Thomas McBride | |
ok msf@ hshoexer@ itojun@ ho@ | |||
2004-06-25 | support new syslogd control protocol and add new -o option to detect memory | Damien Miller | |
buffer overflow; idea & ok markus@ NB if you are using memory buffered logging make sure you update both syslogd and syslogc _and_ restart syslogd because the protocol has changed | |||
2004-06-25 | extend memory buffer control protocol to support transmission of flags, | Damien Miller | |
starting with one to indicate whether the memory ringbuffers have overflowed; idea & ok markus@ NB if you are using memory buffered logging make sure you update both syslogd and syslogc _and_ restart syslogd because the protocol has changed | |||
2004-06-25 | interface groups | Philipp Buehler | |
mcbride@ ok | |||
2004-06-25 | after writing and deleting the kroute6 tree related functions for at least 5 | Henning Brauer | |
times I am getting this in now sow I don't do it a 7th time... | |||
2004-06-25 | fix broken fd handling in the re-exec fallback path, particularly when | Damien Miller | |
/dev/crypto is in use; ok deraadt@ markus@ | |||
2004-06-25 | introduce "interface groups" | Philipp Buehler | |
by "ifconfig fxp0 group foobar" "ifconfig xl0 group foobar" these two interfaces are in one group. Every interface has its if-family as default group. idea/design from henning@, based on some work/disucssion from Joris Vink. henning@, mcbride@ ok. | |||
2004-06-25 | 'machine cpuinfo' and 'machine ddbcpu' in ddb for amd64 | Andreas Gunnarsson | |
2004-06-25 | typo | Theo de Raadt | |
2004-06-25 | pretty | Theo de Raadt | |
2004-06-25 | correct "scrub in" behavior for IPv6. | Jun-ichiro itojun Hagino | |
remaining TODO: - "forward" case kernel behavior (IPv4 too), then pfctl syntax change - red-black tree | |||
2004-06-25 | sync | Theo de Raadt | |
2004-06-25 | build & ship bsd.rd | Theo de Raadt | |
2004-06-25 | SMP support. Big parts from NetBSD, but with some really serious debugging | Artur Grabowski | |
done by me, niklas and others. Especially wrt. NXE support. Still needs some polishing, especially in dmesg messages, but we're now building kernel faster than ever. | |||
2004-06-25 | re-introduce PF_INOUT and move PF_FORWARD def to the end. | Jun-ichiro itojun Hagino | |
pfctl is assuming that the keyword == 0 in its parser! (see decl for "dir"). | |||
2004-06-25 | enable re(4) now that it works | Peter Valchev | |
2004-06-25 | fix MAC address initialization on big endian machines; found by naddy, ok drahn | Peter Valchev | |
2004-06-25 | Provide information about the raw (unswizzled) intrrupt pin in | Artur Grabowski | |
pci_attach_args. drahn@ deraadt@ ok | |||
2004-06-25 | Instead of accessing ci_dev (that's an MI field), provide a marco that | Artur Grabowski | |
translates a cpu_info structure into a human-readable cpu number. drahn@ deraadt@ ok | |||
2004-06-25 | repair tree nanobreak by the nanobum | Theo de Raadt | |
2004-06-25 | Fall back to stat+rename if filesystem doesn't doesn't support hard | Darren Tucker | |
links. bz#823, ok djm@ | |||
2004-06-25 | Remove config.h. Last of the remaining configure artifacts. | Mathieu Sauve-Frankel | |
ok millert@ deraadt@ hshoexer@ | |||
2004-06-25 | Make crufty configure stuff go away. Remove all unused code paths. | Mathieu Sauve-Frankel | |
No change in binaries. ok millert@ deraadt@ hshoexer@ | |||
2004-06-25 | typo noticed by theo. | Claudio Jeker | |
2004-06-25 | Add tap aka layer 2 tunneling support to tun(4). It can be enabled by setting | Claudio Jeker | |
the link0 flag via ifconfig(8). OK markus@, canacar@ also tested by ish@ | |||
2004-06-25 | disallow udpencap_port in bind(0); ok ho@ | Markus Friedl | |
2004-06-25 | remove two ununsed includes | Henning Brauer | |
2004-06-25 | Avoid spurious error message "line too long" (introduced with last commit, | Tom Cosgrove | |
which fixed a buffer overflow here). ok weingart@ | |||
2004-06-25 | simplify | Damien Miller | |
2004-06-25 | remove netiso and netns code | Henning Brauer | |
2004-06-25 | clean reexec-specific junk out of text-exec.sh and simplify; idea markus@ | Damien Miller | |
2004-06-25 | only perform tcp wrappers checks when the incoming connection is on a socket. | Damien Miller | |
silences useless warnings from regress tests that use proxycommand="sshd -i" prompted by david@ ok markus@ | |||
2004-06-25 | Add extended CPUID flag value for AMD64 LONG identification. Taken from | Tom Cosgrove | |
arch/amd64/include/specialreg.h. "fine by me" weingart@ | |||
2004-06-25 | Narrow down privsep interface. Remove ui_init to monitor. So we can get rid of | Hans-Joerg Hoexer | |
monitor_mkfifo. Work in progress. ok ho@ | |||
2004-06-25 | Minor fixes suggested by nordin@ and henning@ | Thorsten Lockert | |
ok millert@ | |||
2004-06-25 | Remove unused gnu style configure stuff. | Mathieu Sauve-Frankel | |
ok hshoexer@ deraadt@ | |||
2004-06-25 | cleanup. | Mathieu Sauve-Frankel | |
ok millert@ | |||
2004-06-25 | IPv6 reassembly on "scrub" directive. | Jun-ichiro itojun Hagino | |
caveats: (to be addressed soon) - "scrub in" should queue fragments back into ip6intrq again, but somehow it does not happen - the packet is kept inside reass queue. need investigation - ip6_forwarding path is not tested - does not use red-black tree. somehow red-black tree behaved badly and was not robust. performance issue, the above one is more important. good things: - "scrub out" is perfectly ok - i think now we can inspect upper-layer protocol fields (tcp port) even if ip6 packet is fragmented. - reass queue will be cleaned up properly by timeout (60sec). we might want to impose pool limit as well | |||
2004-06-25 | recover IPv6 entries somehow disappeared. David Krause | Jun-ichiro itojun Hagino | |
2004-06-24 | First step at multiprotocol support, only partially done. | Claudio Jeker | |
OK henning@ | |||
2004-06-24 | Remove unused getopt implementation. These files are not used. | Mathieu Sauve-Frankel | |
ok hshoexer@ theo@ | |||
2004-06-24 | Identify ourselves on the new console device when it's changed. | Tom Cosgrove | |
ok weingart@ | |||
2004-06-24 | Do a better job at containing powerpc specific #defines to PPC_... | Dale Rahn | |
ok deraadt@ | |||
2004-06-24 | Turn off timeouts if the user types anything at all. This prevents an | Tom Cosgrove | |
automatic boot in 5 seconds after you type "set tty com0", for example. "I like this" deraadt@, "oh! yes" henning@, ok weingart@ | |||
2004-06-24 | A little better but still work in progress. | Andreas Gunnarsson | |
2004-06-24 | KNF, cleanup, readability fixes... this hurt | Henning Brauer | |
ok itojun claudio | |||
2004-06-24 | Minor changes (structural, not behavioural) in order to support a regress | Tom Cosgrove | |
test for boot command handling. Suggested by avsm@; discussed with avsm@ and weingart@ - thanks |