summaryrefslogtreecommitdiff
path: root/sys/net/if_ethersubr.c
AgeCommit message (Expand)Author
2003-10-30Remove some assigned-to but otherwise unused variables.simonb
2003-08-07Move UCB-licensed code from 4-clause to 3-clause licence.agc
2003-06-23Make sure to include opt_foo.h if a defflag option FOO is used.martin
2003-06-11Add NETATALK to the list to check if we bail because no ARP is configured.martin
2003-06-11Fix typpo in #error message. Noted by Pawel Chwalowski in PR 21853.martin
2003-05-23don't call if_free_sadl() until very end of if_detach() logic. many ofitojun
2003-05-16use strlcpyitojun
2003-05-02KNFitojun
2003-03-25Make promiscous mode work on vlans: introduce a new link-layer m_flagbouyer
2003-03-02ignore multicast PPPoE packets ASAP.aymeric
2003-02-26Add MBUFTRACE kernel option.matt
2003-02-03Test callout_pending(), not callout_active(), and eliminate now-unnecessarythorpej
2003-01-22Fix typo: realy -> really. Okay'ed by wiz.jmmv
2003-01-17switch from kame-based m_aux mbuf auxiliary data, to openbsd m_tagitojun
2003-01-12Ethernet multicast entries are malloc'd M_IFMADDR, and thus shouldjdolecek
2002-09-11KNF - return is not a function.itojun
2002-08-26Fix some signed/unsigned comparison warnings from GCC 3.3.thorpej
2002-08-20Make it compile for the __NO_STRICT_ALIGNMENT case.kristerw
2002-08-19In ether_output(), don't bother calling memcpy() to plop the ethertypethorpej
2002-05-18sync with KAME.itojun
2002-04-27Use ETHER_HDR_LEN instead of 14.enami
2002-04-07XXX Explicitly make this fail to compile with a proper warning if wemartin
2002-03-05bring in latest ALTQ from kjc. ALTQify some of the drivers.itojun
2002-02-28Don't call m_aux_find() to find a VLAN tag unless VLANs are configuredthorpej
2001-11-12add RCSIDslukem
2001-10-17unifdef OLDIP6OUTPUTitojun
2001-07-25Duh, braino in last -- only kick the interface if we actually setthorpej
2001-07-25If we change the MTU, kick the interface; it may have to reprogramthorpej
2001-06-29When setting an address on an interface, for address families whichthorpej
2001-06-14change the meaning of ifnet.if_lastchange to meet RFC1573 ifLastChange.itojun
2001-06-12On a non-simplex interface, check incoming multicast (this catchesthorpej
2001-06-03Consider the configured MTU of the interface when determiningthorpej
2001-06-03Add a capability bit that indicates support for Gigabit Ethernetthorpej
2001-04-29Add an in-kernel PPPoE (ppp over ethernet, RFC 2516) implementation,martin
2001-04-27STDC cleanup: label not allowed just before end of block.marcus
2001-04-13Remove the use of splimp() from the NetBSD kernel. splnet()thorpej
2001-04-11Add hooks for bridging.thorpej
2001-04-10Process pfil hooks for Ethernet input and output.thorpej
2001-04-07Add altq_etherclassify(), a slight hack modified from the kame/freebsd4thorpej
2001-01-17Fix a rather annoying problem where the sockaddr_dl which holdsthorpej
2000-12-26Simplify case statement a tiny bit.augustss
2000-12-18Fill in if_dlt.thorpej
2000-12-13Add ALTQ glue.thorpej
2000-12-12Adapt to bpfattach() changes, and further centralize the bpfattach()thorpej
2000-11-17Supports hardware 802.1q VLAN tagging, per discussion on tech-net. The tag isbouyer
2000-11-15Move bpfattach()/bpfdetach() calls into ether_ifattach()/ether_ifdetach().thorpej
2000-10-15When discarding oversized frame, say how long it was.matt
2000-10-15suppress warning on nd6_storelladdr failure. the failure could happenitojun
2000-10-11Implement ether_ioctl(), ioctl operations common to all Ethernetthorpej
2000-10-04Free mbuf when dropping VLAN frame due to no configured vlan interface.enami