summaryrefslogtreecommitdiff
path: root/sys/netinet
AgeCommit message (Expand)Author
2007-10-27Replace the replay protection counter with a cookie.Marco Pfatschbacher
2007-10-17Convert MALLOC/FREE to malloc/free.Hans-Joerg Hoexer
2007-10-09MALLOC+bzero -> malloc+M_ZERO. Don't forget FREE->free this time.Kenneth R Westerback
2007-10-09MALLOC+bzero -> malloc+M_ZERO. Don't forget FREE->free this time.Kenneth R Westerback
2007-10-06Oops. Forgot to do FREE -> free when I did MALLOC -> malloc.Kenneth R Westerback
2007-10-03MALLOC+bzero -> malloc+M_ZERO.Kenneth R Westerback
2007-10-01Last of the really easy bzero() -> M_ZERO. Use 'p = malloc(sizeof(*p) ...'Kenneth R Westerback
2007-09-24Fix carp(4) after the switch to dynamic imo_membership allocation.Claudio Jeker
2007-09-18arc4random_bytes() is the preferred interface for generating nonces;Damien Miller
2007-09-18allow 4095 instead of 20 multicast group memberships per socket (you needMarkus Friedl
2007-09-18ARP balancing has been changed to use the source MAC addressMarco Pfatschbacher
2007-09-17remove backpointer from ifa to ifp if an address gets delete; fixesMarkus Friedl
2007-09-10Remove the ipq locking, it isn't strictly needed right nowThordur I. Bjornsson
2007-09-03Make use of the carp preempt counter to signal number of transitions ofJoel Knight
2007-09-01since theHenning Brauer
2007-07-20Remove inm_ifp from struct in_multi -- caching struct ifnet is dangerousClaudio Jeker
2007-07-04Fix a use after free crash in in_delmulti(). If a interface is detachedClaudio Jeker
2007-06-25merge tcp_set_iss() and tcp_set_tsm(); ok mcbride, djm (on earlier version)Markus Friedl
2007-06-23use a masked destination network instead of the interface ip for theReyk Floeter
2007-06-15Drop the current random timestamps and the current ISN generationMarkus Friedl
2007-06-14preserve the possible route label if the route belongs to the carpReyk Floeter
2007-06-13There is no need to set RTAX_NETMASK on RTF_HOST routes. RTAX_NETMASK willClaudio Jeker
2007-06-11there was code inside #if NPF > 0, but pf.h was not included, so it didHenning Brauer
2007-06-06remove ifdef'd out ipx-in-ip registrationHenning Brauer
2007-06-01sc_carplladdr does not need to be dereferenced.Marco Pfatschbacher
2007-06-01apply the "skip ipsec if there are no flows" speedup diff to IPv6 too.Henning Brauer
2007-06-01Remove code to create a carp(4) Token Ring lladdr.Marco Pfatschbacher
2007-05-30no need to declare extern ipsec_in_use, we get it via ip_ipsp.hHenning Brauer
2007-05-29Move tokenring support to the attic where it can join the cards that whereClaudio Jeker
2007-05-29gain another 5+% in ip forwarding performance.Henning Brauer
2007-05-28double pf performance.Henning Brauer
2007-05-28Users of arc4random() should include dev/rndvar.h directly.Ryan Thomas McBride
2007-05-27diffs are better if compilers see them firstTheo de Raadt
2007-05-27De-static. OK dlg@Claudio Jeker
2007-05-27take static off tcp_mss_adv.David Gwynne
2007-05-27-staticDavid Gwynne
2007-05-27-staticDavid Gwynne
2007-05-27-static on appropriate functionsDavid Gwynne
2007-05-27rewrite a static inline func that simply coerces a return type of anotherDavid Gwynne
2007-05-27-staticDavid Gwynne
2007-05-27thou shalt not use static in the kernelDavid Gwynne
2007-05-27remove more static to avoid confusing the profiler (and maybe ddb too)David Gwynne
2007-05-27remove static from icmp_redirect_timeoutDavid Gwynne
2007-05-26one extern seems to be better than 20 for ifqmaxlen; ok krwJason Wright
2007-05-22When a partial ack is received check if congestion window is larger thanMichele Marchetto
2007-05-22ip_mroute.c is in bad shape.Michele Marchetto
2007-05-16count the number of multicast ranges that are kept in the list of multicastDavid Gwynne
2007-05-09totally unused legacy variable; ok claudioTheo de Raadt
2007-05-09tcp_iss usage is ifdef TCP_COMPAT_42, so the variable decl can be tooTheo de Raadt
2007-05-08variables used by #ifdef code should be inside #ifdef tooTheo de Raadt