summaryrefslogtreecommitdiff
path: root/sys/net/if_mpe.c
AgeCommit message (Expand)Author
2014-12-22Make sure rtrequest1(9) is called under splsoftnet().Martin Pieuchot
2014-12-19unifdef INET in net code as a precursor to removing the pretend option.Ted Unangst
2014-12-05Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>.Martin Pieuchot
2014-11-01Rename rtalloc1() into rtalloc(9) and convert its flags to only enableMartin Pieuchot
2014-10-14Use rtfree() instead of RTFREE(), NULLify some free'd route pointers andMartin Pieuchot
2014-10-07Since the list of mpe(4) interfaces is only accessed in process context,Martin Pieuchot
2014-07-22Fewer <netinet/in_systm.h> !Martin Pieuchot
2014-07-12add a size argument to free. will be used soon, but for now default to 0.Ted Unangst
2014-04-14"struct pkthdr" holds a routing table ID, not a routing domain one.Martin Pieuchot
2013-10-24Remove the number of in6_var.h inclusions by moving some functions andMartin Pieuchot
2013-10-23Remove the number of in_var.h inclusions by moving some functions andMartin Pieuchot
2013-10-17The header file netinet/in_var.h included netinet6/in6_var.h. ThisAlexander Bluhm
2013-03-28no need for a lot of code to include proc.hTed Unangst
2013-03-26Remove various read-only *maxlen variables and use IFQ_MAXLEN directly.Martin Pieuchot
2012-04-14Use DLT_LOOP for all tunneling interfaces.YASUOKA Masahiko
2011-08-20Fix packet accounting in error cases.Ryan Thomas McBride
2011-01-28Replace another m_free() with m_freem() to plug an mbuf leak in mpe_input().Reyk Floeter
2011-01-21make mpls compile w/o errors when inet6 is not definedMike Belopuhov
2010-09-21No need to m_freem() a NULL pointer and change the error for unknownClaudio Jeker
2010-08-25Move the iface specific ioctl call for SIOCSIFRDOMAIN further down so thatClaudio Jeker
2010-07-02m_copyback can fail to allocate memory, but is a void fucntion so gymnasticsBret Lambert
2010-05-31Do not use IF_ENQUEUE() but IF_INPUT_ENQUEUE() instead. The first makroClaudio Jeker
2010-05-28Rework the way we handle MPLS in the kernel. Instead of fumbling MPLS intoClaudio Jeker
2010-01-09No need to call bpfdetach() in mpe_clone_destroy() since this is done inClaudio Jeker
2009-12-26Initial rdomain support for mpe(4). Caveat: assumes MPLS is always inClaudio Jeker
2009-07-13dont initialise ifp->if_snd.ifq_maxlen, and then follow it byDavid Gwynne
2009-01-28Get rid of the ugly rtentry hack.Michele Marchetto
2008-11-06Introduced IPv6 support of uniform model for TTL handling.Michele Marchetto
2008-11-01Introduced Uniform Model for TTL handling.Michele Marchetto
2008-10-28Added mpls_output() used to output mpls packets originating from local host.Michele Marchetto
2008-10-18Prevent the user to assign reserved labels to mpe(4) interfaces.Michele Marchetto
2008-10-14Now mpls_input() handles ipv4 and ipv6 explicit null labels.Michele Marchetto
2008-05-08Add license and OpenBSD RCS Tag to the file, spotted by Dries Schellekens.Pierre-Yves Ritschard
2008-05-08Start at making mpe tap to bpf. While there move if_start() call insidePierre-Yves Ritschard
2008-05-08Hook mpe(4) correctly into mpls so that it is possible to tunnel packets overClaudio Jeker
2008-05-08UP mpe interfaces.Esben Norby
2008-05-07Missing return and correctly indent a debug printf.Claudio Jeker
2008-05-07add mpe_input() to be able to be fed packets that will reenter ip.Pierre-Yves Ritschard
2008-05-07Make mpe a point-to-point interface.Pierre-Yves Ritschard
2008-05-07Correctly initialize labels by byte-swapping and inserting BoS and TTL.Pierre-Yves Ritschard
2008-05-06bring in the mpe interface - for ``MPLS Provider Edge'' - this is a workPierre-Yves Ritschard