Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-07-04 | $OpenBSD$ | Niklas Hallqvist | |
2001-07-04 | $OpenBSD$ | Niklas Hallqvist | |
2001-07-04 | $OpenBSD$ | Niklas Hallqvist | |
2001-07-04 | This was hardly meant to be here | Niklas Hallqvist | |
2001-07-04 | Use the right target when checking for out of bounds. | Niklas Hallqvist | |
2001-07-04 | Use the right target when checking for out of bounds. | Niklas Hallqvist | |
2001-07-04 | Move the declaration of inode_vtbl to after the inode declaration | Angelos D. Keromytis | |
itself -- gets rid of some compilation warnings in userland. ok csapuntz@ | |||
2001-07-04 | Add tests for segment lengths and total lengths bigger than the chip can handle. | Jason Wright | |
Also, add a missing test for *2pages failure on destination buffers. | |||
2001-07-04 | clarify/neaten | Jason Wright | |
2001-07-04 | Explicitly list the new ICMP codes. | Angelos D. Keromytis | |
2001-07-04 | Update with codes, URL, RFCs, from jason@Ackley.NET, closes PR 1919 | Angelos D. Keromytis | |
2001-07-04 | Fix off-by-one error in unit checking | Constantine Sapuntzakis | |
2001-07-04 | Off-by-one error in out-of-range test in bktr_open | Constantine Sapuntzakis | |
2001-07-04 | needs-flag proper | Michael Shalayeff | |
2001-07-03 | iop needs-flag | Niklas Hallqvist | |
2001-07-03 | Add the I2O device | Niklas Hallqvist | |
2001-07-03 | sync | jasoni | |
2001-07-03 | rename 2 more syscalls to syscallname16 (missed last time) | jasoni | |
2001-07-03 | sync | jasoni | |
2001-07-03 | rename some syscalls to <syscall>16 to make room for new ones. | jasoni | |
2001-07-03 | Make the audio device play nice with revoke(2) by having it reset | Hugh Graham | |
both directions if neither read nor write flags are set on close. Cleared by niklas and with some analysis by bjc. | |||
2001-07-03 | Use PADUP() instead of hand-crafted weirdness; also, it's supposed to | Angelos D. Keromytis | |
be "strlen(c) + 1", not just "strlen(c)". | |||
2001-07-03 | Pointer arithmetic fixes work better when you get the casting right. | Angelos D. Keromytis | |
2001-07-03 | grr, you guys keep not obeying KNF | Theo de Raadt | |
2001-07-03 | add DIOCNATLOOK ioctl and pf_natlook structure, this enables a userland | Bob Beck | |
process recieving rdr'ed connections to look up the original destination of the connection before it was redirected - this enables the writing of transparent proxies. | |||
2001-07-03 | enable rx ip checksum offload | Jason Wright | |
2001-07-03 | From FreeBSD: | Jason Wright | |
mask off high order part of vlan tag (the non-tag parts) | |||
2001-07-03 | In readdir, set the calling process in the constructed uio structures. | Constantine Sapuntzakis | |
Fixes problems with interruptible NFS mounts. | |||
2001-07-03 | obvious typo in condition; csapuntz@ ok | Niklas Hallqvist | |
2001-07-02 | another memory leak | Niels Provos | |
2001-07-02 | fix memory leak | Niels Provos | |
2001-07-02 | Put the ISES firmware under dev/microcode/. | Hakan Olsson | |
2001-07-02 | add nge and nsgphy | Nathan Binkert | |
2001-07-02 | When the PHY status changes, we need to check what the media speed is | Nathan Binkert | |
so that we can choose between MII, GMII, and TBI interfaces to the physical layer. Don't print debugging info by default. Change some debugging info. | |||
2001-07-02 | Remove spurious printf | Nathan Binkert | |
2001-07-02 | Add TBI_EN config bit. Also add GPIOR location in EEPROM | Nathan Binkert | |
2001-07-02 | No need to return at the end of a void function | Nathan Binkert | |
2001-07-02 | Print out correct version string | Nathan Binkert | |
2001-07-02 | Compile with WDCDEBUG. | Hakan Olsson | |
2001-07-02 | - More vtophys death: packet buffer lists are is bus_dma(9) memory as is | Jason Wright | |
the mac buffer - also, reenable aggregation code (accidentally removed) | |||
2001-07-02 | grr, indent | Theo de Raadt | |
2001-07-02 | these don't depend on pci register defs | Jason Wright | |
2001-07-01 | -Wall | Dug Song | |
2001-07-01 | Variable declarations without extern are evil. | Miod Vallat | |
2001-07-01 | Variable declarations without extern are evil. | Miod Vallat | |
Also, use PSR_MODE instead of a hardcoded constant in CLKF_USERMODE. | |||
2001-07-01 | Misc cleaning. | Miod Vallat | |
2001-07-01 | tag packets generated by pf (return-rst, return-icmp) so they are not ↵ | Daniel Hartmeier | |
filtered, use existing icmp_error() and ip_output(). ok dugsong@, frantzen@ | |||
2001-07-01 | Enable the ``machine foo'' commands under ddb. | Miod Vallat | |
Add a ``machine prom'' command, which returns to the BUG, like mvme68k has. | |||
2001-07-01 | s/cdev_gen_ipf/cdev_pf_init/ ;openbsd@davidkrause.com | Angelos D. Keromytis | |
2001-07-01 | Add port ranges to the rdr directive. Connections can be redirected | Kjell Wooding | |
to either a range of the same size, or a single port. Redirects between ranges of different sizes are not supported. Eg: rdr dc0 10.0.0.0/24 port 60000:61000 -> 127.0.0.1 port 65530:* proto udp rdr xl0 0.0.0.0/0 port 6660:6669 -> 127.0.0.1 port 6667 proto tcp This replaces the wildcard port patch (when port = 0), as it should no longer be necessary. ok dhartmei@ |