summaryrefslogtreecommitdiff
path: root/sys/net
AgeCommit message (Expand)Author
2011-04-05ditch fastroute, an ipf feature that made its way into pf beforeMike Belopuhov
2011-04-04m_copyback is no longer a void function, so start using its error returnBret Lambert
2011-04-04de-guttenberg our stack a bitHenning Brauer
2011-04-04previous commit replaced a malloc(new) with malloc(sizeof(*new)) whichBret Lambert
2011-04-04Don't do crazy address manipulations when looking up the remote endClaudio Jeker
2011-04-04and stop special casing the bridge for the ip cksum hardware offloadHenning Brauer
2011-04-04stop fiddling with the ip checksum here too, it is always recalculatedHenning Brauer
2011-04-04stop using the stupid R_Malloc/Bcopy/Free macros, and just start usingBret Lambert
2011-04-04there is no point at all in updating the ip checksum. it is alwaysHenning Brauer
2011-04-04all I wanted is to make the bridge behave like the real stack wrt the ipHenning Brauer
2011-04-03Always reserve space in the routing socket for a desync mbuf. This allowsJoel Sing
2011-04-03Don't attempt to enqueue mbufs on sockets marked as SS_CANTRCVMORE, asBret Lambert
2011-04-02dont let pfsync defer packets for states with NOSYNC set.David Gwynne
2011-04-02add a pipex ioctl that lets you specify a description on pppx interfaces byDavid Gwynne
2011-04-02configure the addresses on the pppx interface when its created by npppd soDavid Gwynne
2011-04-02add the local ip address to the session request ioctl so npppd can tell itDavid Gwynne
2011-03-31- use nitems(); no binary changeJasper Lievisse Adriaanse
2011-03-25Include original rdomain in DIOCNATLOOK. This allows userland proxiesClaudio Jeker
2011-03-24Reassemble IPv6 fragments in pf. In the forward case, pf refragmentsAlexander Bluhm
2011-03-23Extract the address family independent functions from pf fragmentAlexander Bluhm
2011-03-14fixed a use-after-free bug introduced at 1.7 in pipex_mppe_output().YASUOKA Masahiko
2011-03-14fix typoYASUOKA Masahiko
2011-03-13Add a way to enable/disable Wake On LAN with ifconfig.Stefan Sperling
2011-03-07Declare the inline function pf_addr_compare() non-static in pfvar.hAlexander Bluhm
2011-03-05The function pf_tag_packet() never fails. Remove a redundant checkAlexander Bluhm
2011-03-02when sending deferred packets use ip6_output for v6 frames instead ofDavid Gwynne
2011-02-24Don't use address and control field on PPPoE, they must not be used asYASUOKA Masahiko
2011-02-23fixup source address rewriting for the icmp errors with the rdr-to setup.Mike Belopuhov
2011-02-18when changing the vlandev of a running vlan(4) interface, we also need toReyk Floeter
2011-02-14free mbuf in failure case. fix for pr6562. ok claudio.Ted Unangst
2011-02-14Add missing byte-order swap to pf_match_addr_range. Without this, rulesStuart Henderson
2011-02-13Unbreak userland as well, since bpf_filter.c is also used in libpcap.Can Erkin Acar
2011-02-12Unbreak previous commit by adding the proper header file.Can Erkin Acar
2011-02-12Clear the filter memory area before using it. Leaving it uninitialized mayCan Erkin Acar
2011-02-06pf_translate() may be called from pflog_packet(). Make sure thatAlexander Bluhm
2011-02-06pf_test() and pf_test6() drop IPv4-ICMP6 and IPv6-ICMP packets. DoAlexander Bluhm
2011-02-05When a packet with an unusual protocol number got rewritten, theAlexander Bluhm
2011-02-01The check for invalid IPv6 fragment size in pf_normalize_ip6() wasAlexander Bluhm
2011-01-28Replace another m_free() with m_freem() to plug an mbuf leak in mpe_input().Reyk Floeter
2011-01-28Fix another memory leak by replacing m_free() with m_freem() in trunk'sReyk Floeter
2011-01-28Change an m_free() to m_freem() to free the whole mbuf chain and to preventReyk Floeter
2011-01-28make sure that the size of the addresses userland is trying to configureDavid Gwynne
2011-01-25pool is properly spelled pl. makes this one fit in netstat column.Ted Unangst
2011-01-22Pf must not scrub packets which will be dropped anyway.Alexander Bluhm
2011-01-21make mpls compile w/o errors when inet6 is not definedMike Belopuhov
2011-01-20The reason accounting in pf_reassemble() was not correct. ChangeAlexander Bluhm
2011-01-19Give pf_normalize_ip() the same 3 way semantics as pf_test().Alexander Bluhm
2011-01-18When changing the ifa_broadaddr broadcast address, ifa_update_broadaddr()Alexander Bluhm
2011-01-12Never include SADB_X_EXT_REMOTE_AUTH (which is either aMike Belopuhov
2011-01-11for key material that is being being discarded, convert bzero() toTheo de Raadt