X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Flist.c;h=9d4920b70a075c0b257c622aeb24f87b277791ff;hb=4574b04f79d79d53492b7e0eb592d64ff9b2362b;hp=a26c58d603555a7bfceb77fa3a18774773a8758e;hpb=35b1c25093a478d20e01f0ff391c9cdc9c41c2b8;p=tinc diff --git a/src/list.c b/src/list.c index a26c58d6..9d4920b7 100644 --- a/src/list.c +++ b/src/list.c @@ -91,6 +91,26 @@ list_node_t *list_insert_tail(list_t *list, void *data) { return node; } +list_node_t *list_insert_after(list_t *list, list_node_t *after, void *data) { + list_node_t *node; + + node = list_alloc_node(); + + node->data = data; + node->next = after->next; + node->prev = after; + after->next = node; + + if(node->next) + node->next->prev = node; + else + list->tail = node; + + list->count++; + + return node; +} + void list_unlink_node(list_t *list, list_node_t *node) { if(node->prev) node->prev->next = node->next;