X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fnode.h;h=4e865dfb29510b011637e61f0478faafeb49f90c;hb=b88b573eb91ee7dca96ad0a5269bc455e8c97c14;hp=afcd43eace12e7e59c900d0914ac5337edb69dc1;hpb=3f48dfcb372ccf940ae077bf220adf957a926c82;p=meshlink diff --git a/src/node.h b/src/node.h index afcd43ea..4e865dfb 100644 --- a/src/node.h +++ b/src/node.h @@ -35,7 +35,8 @@ typedef struct node_status_t { unsigned int unused_sptps: 1; /* 1 if this node supports SPTPS */ unsigned int udp_confirmed: 1; /* 1 if the address is one that we received UDP traffic on */ unsigned int broadcast: 1; /* 1 if the next UDP packet should be broadcast to the local network */ - unsigned int blacklisted: 1; /* 1 if the node is blacklist so we never want to speak with him anymore*/ + unsigned int blacklisted: 1; /* 1 if the node is blacklist so we never want to speak with him anymore */ + unsigned int destroyed: 1; /* 1 if the node is being destroyed, deallocate channels when any callback is triggered */ unsigned int unused: 22; } node_status_t;