search for: c63fdf9c

Displaying 2 results from an estimated 2 matches for "c63fdf9c".

Did you mean: c631df4c
2018 Nov 28
1
Fix issue with graphviz file format
Hello, Here's a quick patch to secure node names in generated graphviz network maps. Thanks for tinc!
2019 Sep 28
0
[PATCH] src/graph.c: print bidirectional edges with a single two-headed arrow
From: Erich Eckner <git at eckner.net> Signed-off-by: Erich Eckner <git at eckner.net> --- src/graph.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/graph.c b/src/graph.c index c63fdf9c..91f5c990 100644 --- a/src/graph.c +++ b/src/graph.c @@ -366,7 +366,13 @@ void dump_graph(void) { /* now dump all edges */ for(node = edge_weight_tree->head; node; node = node->next) { e = node->data; - fprintf(file, " \"%s\" -> \"%s\";\n", e->fr...