X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnode.h;h=6e48f3b3f797691cfaf06742f82a47c099f5d9bf;hp=2ea96922233fe0e3a3dfaef5a2af0664e1b917fc;hb=67df7fb7e1c9eefe4bbc920fdc68b595ef28abd9;hpb=eb391c52eed46f3f03b404553df417851fc0cb90 diff --git a/src/node.h b/src/node.h index 2ea96922..6e48f3b3 100644 --- a/src/node.h +++ b/src/node.h @@ -31,7 +31,7 @@ typedef union node_status_t { struct { - int active:1; /* 1 if active.. */ + int unused_active:1; /* 1 if active (not used for nodes) */ int validkey:1; /* 1 if we currently have a valid key for him */ int waitingforkey:1; /* 1 if we already sent out a request */ int visited:1; /* 1 if this node has been visited by one of the graph algorithms */ @@ -61,8 +61,6 @@ typedef struct node_t { int compression; /* Compressionlevel, 0 = no compression */ - list_t *queue; /* Queue for packets awaiting to be encrypted */ - struct node_t *nexthop; /* nearest node from us to him */ struct node_t *via; /* next hop for UDP packets */