Age | Commit message (Expand) | Author |
2019-02-20 | make ether_output with AF_MPLS use a routes gateway address if available | David Gwynne |
2019-02-18 | get rid of some trailing whitespace. | David Gwynne |
2018-12-26 | uncouple AF_MPLS and AF_INET | denis |
2018-12-20 | add bpe(4) or Backbone Provider Edge interfaces | David Gwynne |
2018-12-12 | allow ethernet interfaces to provide a custom if_output routine. | David Gwynne |
2018-12-11 | split ether_output into resolution, encapsulation, and output functions | David Gwynne |
2018-03-13 | on input, check the unicast address before the multicast handling. | David Gwynne |
2018-02-27 | make kernel compile again without INET6 | Sebastian Benoit |
2018-02-02 | In ether_input() use goto dropanyway instead of repeating m_freem() | Alexander Bluhm |
2018-01-10 | shuffle how the protocol family input is done in ether_input. | David Gwynne |
2018-01-09 | make mpls_input take a struct ifnet *ifp argument. | David Gwynne |
2018-01-04 | remove support for decapsulating LLC/SNAP frames. | David Gwynne |
2018-01-03 | Add support for IPv6 over MPLS pseudowire aka mpw(4) | denis |
2017-05-31 | Move IPv4 & IPv6 incoming/forwarding path, PIPEX ppp processing and | Martin Pieuchot |
2017-05-30 | Introduce ipv{4,6}_input(), two wrappers around IP queues. | Martin Pieuchot |
2017-05-28 | Remove all splnet/splx from pipex(4) and pppx(4) and replace some of | YASUOKA Masahiko |
2017-05-22 | white space fix. no functional change. | David Gwynne |
2017-01-24 | A space here, a space there. Soon we're talking real whitespace | Kenneth R Westerback |
2016-10-11 | Strengthen Ethernet packet length checks on input; ok dlg | Mike Belopuhov |
2016-10-10 | ensure prepended ethernet headers are placed on ETHER_ALIGN boundaries, | David Gwynne |
2016-07-12 | Directly drop packets filtered by bpf(4) instead of going through the | Martin Pieuchot |
2016-06-08 | Move ND resoluton logic from nd6_output() to nd6_storelladdr() and | Martin Pieuchot |
2016-05-31 | Ensure that a valid route entry is passed to ether_output() if L2 | Martin Pieuchot |
2016-05-18 | Remove some superflous if_get(9)/if_put(9) dances now that ARP input | Martin Pieuchot |
2016-04-01 | Building kernels with PPPOE_SERVER enabled has been broken for at least | Jonathan Gray |
2016-03-01 | enm_ac in ether_multi is set but never used. so we dont need it. | David Gwynne |
2016-01-22 | Always check destination MAC address of received unicast packets, not | Stefan Fritsch |
2016-01-08 | Get rid of the arp and revarp input queues. | Martin Pieuchot |
2015-12-02 | Rework the MPLS handling. Remove the lookup loops since nothing is using | Claudio Jeker |
2015-10-25 | Introduce if_rtrequest() the successor of ifa_rtrequest(). | Martin Pieuchot |
2015-10-22 | Inspired by satosin(), use inline functions to convert sockaddr dl. | Alexander Bluhm |
2015-09-29 | add sizes to some of the simpler free calls | Theo de Raadt |
2015-09-27 | Welcome etheranyaddr, cousin of etherbroadcastaddr. | Stefan Sperling |
2015-09-17 | instead of leaking rarp packets, break from the switch statement | David Gwynne |
2015-09-13 | queue revarps to softnet so we can defer processing to a context with | David Gwynne |
2015-09-12 | Introduce if_input_local() a function to feed local traffic back to | Martin Pieuchot |
2015-09-10 | pass a cookie argument to interface input handlers that can be used | Mike Belopuhov |
2015-09-10 | move the if input handler list to an SRP list. | David Gwynne |
2015-07-29 | Don't use mpls_input() as input handler anymore and instead call it | Rafael Zalamena |
2015-07-20 | Kill NETISR_MPLS, from now on we will use interface input handlers to deal | Rafael Zalamena |
2015-07-18 | Packets that make it to ether_input that have M_VLANTAG set must be dropped. | Claudio Jeker |
2015-07-17 | Fix MPLS routing when receiving packet with multiple labels. | rzalamena |
2015-07-15 | m_freem() can handle NULL, do not check for this condition beforehands. | Theo de Raadt |
2015-07-02 | most of the destinations for mbufs in ether_input are mpsafe except for | David Gwynne |
2015-07-02 | Move back rdomain's check into ether_output() otherwise it triggers | Martin Pieuchot |
2015-07-02 | By design if_input_process() needs to hold a reference on the receiving | Martin Pieuchot |
2015-06-30 | Get rid of the undocumented & temporary* m_copy() macro added for | Martin Pieuchot |
2015-06-30 | Rename if_output() into if_enqueue() to avoid confusion with comments | Martin Pieuchot |
2015-06-29 | count if_ibytes in if_input like we do for if_ipackets. | David Gwynne |
2015-06-25 | No more NBRIDGE in the Ethernet layer. Fewer layer violation, say yeah! | Martin Pieuchot |