]> git.meshlink.io Git - meshlink/blobdiff - src/edge.h
Correctly handle incoming retransmissions of SYN packets.
[meshlink] / src / edge.h
index cc7a449b7e4b56fe6b962d61b22c5e36f3f27b6f..2e59fa1de02da0a411787b82359ed855935c9dd5 100644 (file)
@@ -30,11 +30,10 @@ 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 */
-
        struct connection_t *connection;        /* connection associated with this edge, if available */
        struct edge_t *reverse;                 /* edge in the opposite direction, if available */
+
+       int weight;                             /* weight of this edge */
 } edge_t;
 
 extern void init_edges(struct meshlink_handle *mesh);