History log of /netbsd/usr.sbin/ldpd/tlv_stack.c (Results 1 – 13 of 13)
Revision Date Author Comments
# 4b7afb61 31-Jul-2013 kefren <kefren@NetBSD.org>

Store local bindings in a rbtree


# 75fc9253 20-Jul-2013 kefren <kefren@NetBSD.org>

don't connect on first hello, there are chances that ours is not seen yet
setproctitle with ldp id - useful for rump kernels testing
fix a memory leak in ldp_peer_new
don't holddown if already holded

don't connect on first hello, there are chances that ours is not seen yet
setproctitle with ldp id - useful for rump kernels testing
fix a memory leak in ldp_peer_new
don't holddown if already holded down
peer sockets are now non-blocking
connected routes deletes are now processed
check if peer is connected before attempting to sending label mappings

show more ...


# de4de23a 18-Jul-2013 kefren <kefren@NetBSD.org>

* rework the reattachment code
* build an implnull label when a route is added and let mpls_add_label
to take care of relabelling
* take out last piece of the code where we do route lookups - we sh

* rework the reattachment code
* build an implnull label when a route is added and let mpls_add_label
to take care of relabelling
* take out last piece of the code where we do route lookups - we should have
every information we need in labels
* tested these changes using a number of rump kernels and some couple of
thousands of flapping routes

show more ...


# 2a3b3ff6 18-Jul-2013 kefren <kefren@NetBSD.org>

Make sure labels are always updated when a route is added and when a peer
is added
Rework mpls_add_label according to that so no route refresh is done anymore
Use poll when reading the PF_ROUTE socke

Make sure labels are always updated when a route is added and when a peer
is added
Rework mpls_add_label according to that so no route refresh is done anymore
Use poll when reading the PF_ROUTE socket
setsockopt SO_USELOOPBACK on the PF_ROUTE socket
Output some information on SIGINFO
Allow map changing for a ldp peer
Finally fix the connected routes admission into labels
Correct the route trigger when a label map is received

show more ...


# d9638db5 16-Jul-2013 kefren <kefren@NetBSD.org>

send the actual prefix on the wire instead of struct headers
statify


# de472c46 11-Jul-2013 kefren <kefren@NetBSD.org>

sprinkle more const


# ef4c351a 11-Jul-2013 kefren <kefren@NetBSD.org>

Constify a little bit


# 6e6da1a6 26-Jan-2013 kefren <kefren@NetBSD.org>

modify structures in order to accomodate IPv6 according to
draft-ietf-mpls-ldp-ipv6. Correct a little bit IPv6 hello path


# d99973b4 12-Nov-2012 kefren <kefren@NetBSD.org>

* add initial IPv6 support - still incomplete at this moment, but it sends
out there IPv6 hellos. Interoperability not yet tested.
* sync man page with reality


# 0d71baae 15-Jun-2011 kefren <kefren@NetBSD.org>

we need to add mapping even if there is no route for the prefix


# 5ee15d25 10-Feb-2011 kefren <kefren@NetBSD.org>

stop processing a label mapping message if we don't have a route for it.
This way we avoid failing an assert later in mpls_add_label()


# 769c32d9 09-Dec-2010 christos <christos@NetBSD.org>

- no cast for malloc
- malloc + memset = calloc
- sizeof(type) -> sizeof(*var)
- small indents


# a994a89a 08-Dec-2010 kefren <kefren@NetBSD.org>

Add ldpd, a RFC 3036 compatible LDP speaker.