X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fedge.h;fp=src%2Fedge.h;h=e2f3b3b79bc92b6f00e848e446d24f25372fc2ab;hp=ef4feefcac2a1c81d1c720406797bc7b585391f7;hb=3157b94e8bdcb6f2a5c48699379d4954c9db1e00;hpb=2116c6eb7d328c7aa3ce3da54f95367e5199d373 diff --git a/src/edge.h b/src/edge.h index ef4feefc..e2f3b3b7 100644 --- a/src/edge.h +++ b/src/edge.h @@ -31,14 +31,14 @@ typedef struct edge_t { struct node_t *to; sockaddr_t address; - uint32_t options; /* options turned on for this edge */ - int weight; /* weight of this edge */ + uint32_t options; /* options turned on for this edge */ + int weight; /* weight of this edge */ - struct connection_t *connection; /* connection associated with this edge, if available */ - struct edge_t *reverse; /* edge in the opposite direction, if available */ + struct connection_t *connection; /* connection associated with this edge, if available */ + struct edge_t *reverse; /* edge in the opposite direction, if available */ } edge_t; -extern avl_tree_t *edge_weight_tree; /* Tree with all known edges sorted on weight */ +extern avl_tree_t *edge_weight_tree; /* Tree with all known edges sorted on weight */ extern void init_edges(void); extern void exit_edges(void);