Age | Commit message (Collapse) | Author | |
---|---|---|---|
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@ | |||
2001-07-01 | for ICMP error messages refering to TCP packets, only use the first 8 bytes ↵ | Daniel Hartmeier | |
of the TCP header. drop ackskew test and th_sum update. | |||
2001-07-01 | Add missing space in debug message. | Angelos D. Keromytis | |
2001-07-01 | Fix length check, add some more sanity checks on INET6. | Angelos D. Keromytis | |
2001-07-01 | KNF, and add DPRINTFs all over the place. | Angelos D. Keromytis | |
2001-07-01 | More prototype/header file cleanup. | Dale Rahn | |
2001-07-01 | Properly identify the PBG4 keyboard, US keyboard at least. | Dale Rahn | |
2001-06-30 | Repair 197 support (oops) | Miod Vallat | |
2001-06-30 | Get root filehandle via nfs_root. | Constantine Sapuntzakis | |
Fix problem with diskless clients | |||
2001-06-29 | Move ifq_maxlen setting to if_attach(). Doing it at if_init() is wrong, | Federico G. Schwindt | |
and has been wrong since PnP devices (pcmcia, carbus, etc) shown up. If you forgot to set ifq_maxlen somewhere in the driver, you're gonna see baaaad things; jason@ ok, angelos@ "should be ok" , theo "don't understand why". | |||
2001-06-29 | update the copyright year | Michael Shalayeff | |
2001-06-29 | return normal is error code returned is zero, for some thinkpads | Michael Shalayeff | |
2001-06-29 | Some cleaning. Remove unused boot options, don't declare extra RB_FOO | Miod Vallat | |
symbols with fancy values. Get rid of some debug code, too. | |||
2001-06-29 | move definitions around a bit and define a few more constants | Jason Wright | |
2001-06-29 | Give RB_NOSYM a non-conflicting value here too. | Miod Vallat | |
2001-06-29 | spaces | Michael Shalayeff | |
2001-06-29 | implement get/set screen ioctls to fetch configured screen list | Michael Shalayeff | |
and switch focus out of comand line utility (to come soon). also, fix duplicated ioctl numbers, so rebuild the ws* utils. | |||
2001-06-29 | merge a bit of bus_dma* from netbsd | Jason Wright | |
convert some NBPG->PAGE_SIZE add missing initialization missed in previous merge use kernel_map not kmem_map | |||
2001-06-29 | move pf_test check to happen after checksum calculation - without | Bob Beck | |
this packets originating from this host (such as with an rdr to localhost for transparent proxying) do not get checksummed correctly, because the pf code does not have a correct checksum to fix up (ok kjell@) | |||
2001-06-29 | saner checking in icmp_error; from NetBSD with work by dug and me. | Niels Provos | |
2001-06-29 | Prepend pf_ to limit potential namespace problems, shorten some lines. | Niklas Hallqvist | |
2001-06-29 | Add kbd info for iBook. -moj | Mats O Jansson | |
2001-06-29 | allocate contexts during attach since we can't mess with them during | Jason Wright | |
interrupts (the space allocation is wasteful, but more data will be moved into the allocation soon). |