summaryrefslogtreecommitdiff
path: root/sys/kern/uipc_mbuf2.c
AgeCommit message (Collapse)Author
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2003-03-03set n->m_len, somehow the line have lost. thanks danielJun-ichiro itojun Hagino
2003-03-03use M_READONLY instead of defining M_SHAREDCLUSTER(). the change should haveJun-ichiro itojun Hagino
been made when M_READONLY was introduced. sync w/kame
2002-10-10preserve the m_tag order in m_tag_copy_chain() as originally intended.Kenjiro Cho
the order doesn't matter at this moment but could be problematic if 2 tags of the same type are ever added. ok jason@, dhartmei@, angelos@
2002-03-14First round of __P removal in sysTodd C. Miller
2002-02-01Don't MALLOC/FREE with variable size.Artur Grabowski
2001-06-23Having to update queue(3) for DLIST_* is a major PITA; thus, just useAngelos D. Keromytis
SLIST and be done with it.
2001-06-23Use DLIST for tags.Angelos D. Keromytis
2001-05-27m_tag_first()/m_tag_next()Angelos D. Keromytis
2001-05-26Convert to LIST, remove m_tag_append(), add m_tag_init().Angelos D. Keromytis
2001-05-24More DIAGNOSTIC checks.Angelos D. Keromytis
2001-05-24Catch another weird case in diagnostics.Angelos D. Keromytis
2001-05-22Do some ideally unneeded checking of tags.Angelos D. Keromytis
2001-05-20m_tag_* routines, plus minor changes (convert from tdbi to tags)Angelos D. Keromytis
2001-05-17convert mbuf and cluster allocation to pool, mostly from NetBSDNiels Provos
okay art@ miod@
2001-03-28Allow tdbi's to appear in mbufs throughout the stack; this allowsAngelos D. Keromytis
security properties of the packets to be pushed up to the application (not done yet). Eventually, this will be turned into a packet attributes framework. Make sure tdbi's are free'd/cleared properly whenever drivers (or NFS) does weird things with mbufs.
2001-02-14make sure we do not pass shared M_EXT mbuf. will avoidJun-ichiro itojun Hagino
possible shared mbuf overwrite if we use bridge/multicast/loopback/whatever. sync with kame
2000-07-12remove m_pulldown statistics, which is highly experimentalJun-ichiro itojun Hagino
2000-06-12update icmp6 name lookup code to conform to 05 draft. previous codeJun-ichiro itojun Hagino
was 03/05 chimera. ping6: -n by default due to too many false error report due to too long reverse query delay.
2000-01-04Remove unused file. If we end up using m_pulldown() in the future, itAngelos D. Keromytis
should be added to uipc_mbuf.c
1999-12-08bring in KAME IPv6 code, dated 19991208.Jun-ichiro itojun Hagino
replaces NRL IPv6 layer. reuses NRL pcb layer. no IPsec-on-v6 support. see sys/netinet6/{TODO,IMPLEMENTATION} for more details. GENERIC configuration should work fine as before. GENERIC.v6 works fine as well, but you'll need KAME userland tools to play with IPv6 (will be bringed into soon).