Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-07-02 | Fixed a #ifdef defined()... typo that turned into a compilation failure. | cmetz | |
1999-07-02 | Significant cleanups in the way TCP is made to handle multiple network | cmetz | |
protocols. "struct tcpiphdr" is now gone from much of the code, as are separate pointers for ti and ti6. The result is fewer variables, which is generally a good thing. Simple if(is_ipv6) ... else ... tests are gone in favor of a switch(protocol family), which allows future new protocols to be added easily. This also makes it possible for someone so inclined to re-implement TUBA (TCP over CLNP?) and do it right instead of the kluged way it was done in 4.4. The TCP header template is now referenced through a mbuf rather than done through a data pointer and dtom()ed as needed. This is partly because dtom() is evil and partly because max_linkhdr + IPv6 + TCP + MSS/TS/SACK opts won't fit inside a packet header mbuf, so we need to grab a cluster for that (which the code now does, if needed). | |||
1999-07-02 | consistent .Dd usage; proper format is: .Dd Month DD, YYYY | Aaron Campbell | |
1999-07-02 | more systeminfo() fixes; hal@sdsi.com | Theo de Raadt | |
1999-07-02 | sparc -> __sparc__ | Brad Smith | |
1999-07-02 | do not use fuword() | Theo de Raadt | |
1999-07-02 | freebsd merge: | Jason Wright | |
dynamically set the tx threshold (missed in last merge) | |||
1999-07-02 | Kludge to not get locked threads with UVM, XXX | Niklas Hallqvist | |
1999-07-02 | Added a simple but potentially very useful new mbuf function, m_apply(). | cmetz | |
It applies the supplied function f(state, p, len) to every contiguous region in a mbuf, thus mostly handling all the mbuf-isms for you. It's used by my TCP MD5 signature implementation to run MD5 over the TCP payload data in a mbuf so that I don't have to spread mbufism-loops all over. It might also be useful for IPsec. | |||
1999-07-01 | lmc driver; ported by chris@dqc.org | Theo de Raadt | |
1999-07-01 | indent | Theo de Raadt | |
1999-07-01 | new mdoc'd bootpef(8), bootptest(8), vttest(1) man pages; kwesterback@home.com | Aaron Campbell | |
also repairs to mdoc.samples(7) and tcpdump(8) | |||
1999-07-01 | Forgotten changes needed by the Xircom driver. Includes acceptance | Niklas Hallqvist | |
of config-less functions, lowering of some splhighs to spltty and some stylistic changes | |||
1999-07-01 | regen | Niklas Hallqvist | |
1999-07-01 | Add back lost Newmedia Multimedia. Some TDK/Xircom messup cleaned | Niklas Hallqvist | |
up. Add Lucent WaveLAN numbers. | |||
1999-07-01 | Add NewMedia BusToaster SCSI Host Adapter. | Federico G. Schwindt | |
Remove repeated entry in if_ne_pcmcia.c. Minor cosmetical changes. | |||
1999-07-01 | This should fix the problem reported by mickey@. | Federico G. Schwindt | |
1999-07-01 | sync | Federico G. Schwindt | |
1999-07-01 | Add NewMedia BusToaster SCSI Host Adapter from NetBSD. | Federico G. Schwindt | |
1999-07-01 | Add support for Joliet extensions. From FreeBSD | David Leonard | |
1999-06-30 | put non-space names in systeminfo(SI_PLATFORM); hal_snyder@sdsi.com | Theo de Raadt | |
1999-06-30 | do not allocate pv_entries for the block-mapped area | Michael Shalayeff | |
1999-06-30 | sync | Theo de Raadt | |
1999-06-30 | another pci list | Theo de Raadt | |
1999-06-30 | remove final low-level crypto knowledge from base ipsec code | Theo de Raadt | |
1999-06-30 | bpfattach bridge's and provide tap for queued packets | Jason Wright | |
1999-06-29 | add sysctl kern.arandom to get a random integer. useful when chrooted with | Niels Provos | |
no /dev/arandom. | |||
1999-06-29 | do not enable eisa by ourselves, better viper size print | Michael Shalayeff | |
1999-06-29 | use FreeBSD's alpha stuff | Jason Wright | |
1999-06-29 | merge with FreeBSD: | Jason Wright | |
support for 3c905C | |||
1999-06-29 | sync with freebsd: | Jason Wright | |
comment out some debugging code, rcsid changes | |||
1999-06-29 | sync | Jason Wright | |
1999-06-29 | 3c905C-TX | Jason Wright | |
1999-06-29 | remove vm_inherit_t casts, not really needed; millert@ | Aaron Campbell | |
1999-06-29 | add rl & rlphy | Jason Wright | |
1999-06-29 | merge with FreeBSD: | Jason Wright | |
support for delta, addtron, and SiS 8139 boards initialize if_snd.ifq_maxlen correctly chipset now works on alpha | |||
1999-06-29 | sync | Jason Wright | |
1999-06-29 | SiS 900 (rl8139) ethernet | Jason Wright | |
1999-06-29 | support for pnic | Jason Wright | |
1999-06-29 | Merge with FreeBSD: | Jason Wright | |
workarounds for tx/rx hardware bugs now works on alpha support for phy-less boards (onboard xcvr) | |||
1999-06-28 | typo; failed with WDDEBUG set | Hakan Olsson | |
1999-06-28 | sync with FreeBSD: | Jason Wright | |
PNIC-II now supported in if_mx stability fixes | |||
1999-06-28 | sync | Hakan Olsson | |
1999-06-28 | Add Diamond MX300 | Hakan Olsson | |
1999-06-28 | sync | Jason Wright | |
1999-06-28 | compex PMAC | Jason Wright | |
1999-06-26 | do this right next time, ho | Theo de Raadt | |
1999-06-26 | Recognize Nvidia TNT2 cards. | Hakan Olsson | |
1999-06-25 | Don't turn off uart when closing cua device if tty is waiting. | Jim Rees | |
Instead just drop dtr briefly. | |||
1999-06-24 | don't free spp in swapmount, someone else does that for us. From: mickey@ | Artur Grabowski | |