summaryrefslogtreecommitdiff
path: root/sys/net
AgeCommit message (Expand)Author
2009-10-28Add a dedicated pf pool for route options as suggested by henning,Jonathan Gray
2009-10-26Set the rdomain in bpfwrite() to the interface rdomain so that bpf senderClaudio Jeker
2009-10-26Replace pool_get() + bzero() with pool_get(..., PR_ZERO).Michael Knudsen
2009-10-10fix mbuf leak in rtinit()Dariusz Swiderski
2009-10-06Redo the route lookup in the output (and IPv6 forwarding) path if theClaudio Jeker
2009-10-06Replace if (af) tests operating as an af blacklist with stricter switchRyan Thomas McBride
2009-10-04Add (again) support for divert sockets. They allow you to:Michele Marchetto
2009-09-28when inserting a state, turn the error that pf_state_insert returnsDavid Gwynne
2009-09-21Properly reference count bpf descriptors when using kqueue.Can Erkin Acar
2009-09-17Remove the comaptibility structures for routing socket version 3.Claudio Jeker
2009-09-17Wrap trunk_enqueue() calls in splnet() since sending out lacp packetsClaudio Jeker
2009-09-17Add an splassert check trunk_enqueue() calling this function at anythingClaudio Jeker
2009-09-16style: in pf_test_state_other, fix indentation, kill excessive newlines,Henning Brauer
2009-09-16fix copy & paste error from almost a year ago (bad ryan)Henning Brauer
2009-09-14Add a way to convert the ifi_link_state to a string without the use ofClaudio Jeker
2009-09-09remove inline functions and move some code from the trunk_lacp_input()Reyk Floeter
2009-09-08I had not enough oks to commit this diff.Michele Marchetto
2009-09-08Add support for divert sockets. They allow you to:Michele Marchetto
2009-09-07de-inline a function which gains absolutely no benefit at all from itTheo de Raadt
2009-09-07Fix static-port, found by jmc@. ok henning@.Stuart Henderson
2009-09-01Clear the IP_DF bit if no-df is enabled, not if it is not enabled.Joel Sing
2009-09-01the diff theo calls me insanae for:Henning Brauer
2009-09-01Make rtinit() cope when there is a more specific route available thenClaudio Jeker
2009-08-25Clearly copy the whole, and nothing but the whole, old buffer intoKenneth R Westerback
2009-08-25Remove support for packet mode of Metricom Ricochet radios.Jonathan Gray
2009-08-25Fix order of memcpy() arguments so data is copied from src to dest,Kenneth R Westerback
2009-08-16remove prototypes of a bunch of functions that had their implementationsJonathan Gray
2009-08-12revert my change to m_cluncount which tries to prevent the systemDavid Gwynne
2009-08-12dlg deferred calling interfaces' if_start routine so we call them less,Henning Brauer
2009-08-12if we get dangerously low on clusters during interrupts, we needDavid Gwynne
2009-08-10At sys_reboot time, bring all the interfaces down so that their xxstopTheo de Raadt
2009-08-09Tag packets into correct rdomain in tunwrite(). For L2 traffic this will beClaudio Jeker
2009-08-02Preserve joined interface groups when tun(4) is switchedMarco Pfatschbacher
2009-07-31timeout_add -> timeout_add_msecBret Lambert
2009-07-28Plug a memory leak when calling rtable_add(0) multiple times. Fixing thisClaudio Jeker
2009-07-28do not leak pf_rule_item_pl items in pf_test_rule() whenHenning Brauer
2009-07-28check that pool_get actually gives us memory in pf_test_rule.Henning Brauer
2009-07-27tiemout_add -> timeout_add_secBret Lambert
2009-07-21pf_scrub_ip/ip6 prototypes are already in pfvar.hHenning Brauer
2009-07-19clalloc() can't fail, so there's no need to handle failure cases.Bret Lambert
2009-07-16Backout rev1.79 of if_vlan.c and rev1.66 of if_trunk.c;Thordur I. Bjornsson
2009-07-13Do the same rdomain checking in sppp as we do in the Ethernet case.Claudio Jeker
2009-07-13dont initialise ifp->if_snd.ifq_maxlen, and then follow it byDavid Gwynne
2009-07-13make the send queue one slot long. this forces packets off the virtualDavid Gwynne
2009-07-09unsigned -> unsigned intBret Lambert
2009-07-08Add the same routing domain assignments and checks into the not so usedClaudio Jeker
2009-07-07When adding or changing a MPLS route, add RTF_MPLS flag toMichele Marchetto
2009-06-26invert direction for inner icmp state lookups (e.g. traceroute with icmp)Markus Friedl
2009-06-26the pr_usrreq implementation for routing sockets shares exactly one lineBret Lambert
2009-06-25scrub_flags is a u_int8_t, but PFSTATE_SCRUB_TCP is 0x0100, so theStuart Henderson