summaryrefslogtreecommitdiffstats
path: root/sys/net/if_mpe.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Use DLT_LOOP for all tunneling interfaces.yasuoka2012-04-141-2/+2
* Fix packet accounting in error cases.mcbride2011-08-201-2/+2
* Replace another m_free() with m_freem() to plug an mbuf leak in mpe_input().reyk2011-01-281-2/+2
* make mpls compile w/o errors when inet6 is not definedmikeb2011-01-211-1/+5
* No need to m_freem() a NULL pointer and change the error for unknownclaudio2010-09-211-3/+2
* Move the iface specific ioctl call for SIOCSIFRDOMAIN further down so thatclaudio2010-08-251-1/+12
* m_copyback can fail to allocate memory, but is a void fucntion so gymnasticsblambert2010-07-021-3/+3
* Do not use IF_ENQUEUE() but IF_INPUT_ENQUEUE() instead. The first makroclaudio2010-05-311-3/+3
* Rework the way we handle MPLS in the kernel. Instead of fumbling MPLS intoclaudio2010-05-281-41/+142
* No need to call bpfdetach() in mpe_clone_destroy() since this is done inclaudio2010-01-091-4/+1
* Initial rdomain support for mpe(4). Caveat: assumes MPLS is always inclaudio2009-12-261-1/+19
* dont initialise ifp->if_snd.ifq_maxlen, and then follow it bydlg2009-07-131-2/+1
* Get rid of the ugly rtentry hack.michele2009-01-281-2/+2
* Introduced IPv6 support of uniform model for TTL handling.michele2008-11-061-4/+12
* Introduced Uniform Model for TTL handling.michele2008-11-011-7/+38
* Added mpls_output() used to output mpls packets originating from local host.michele2008-10-281-8/+2
* Prevent the user to assign reserved labels to mpe(4) interfaces.michele2008-10-181-2/+3
* Now mpls_input() handles ipv4 and ipv6 explicit null labels.michele2008-10-141-4/+26
* Add license and OpenBSD RCS Tag to the file, spotted by Dries Schellekens.pyr2008-05-081-0/+17
* Start at making mpe tap to bpf. While there move if_start() call insidepyr2008-05-081-9/+30
* Hook mpe(4) correctly into mpls so that it is possible to tunnel packets overclaudio2008-05-081-17/+13
* UP mpe interfaces.norby2008-05-081-0/+1
* Missing return and correctly indent a debug printf.claudio2008-05-071-3/+3
* add mpe_input() to be able to be fed packets that will reenter ip.pyr2008-05-071-0/+32
* Make mpe a point-to-point interface.pyr2008-05-071-1/+9
* Correctly initialize labels by byte-swapping and inserting BoS and TTL.pyr2008-05-071-6/+12
* bring in the mpe interface - for ``MPLS Provider Edge'' - this is a workpyr2008-05-061-0/+216