X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fconnection.h;h=25e122d05f0726de19da9d04f665e7b11a975b31;hb=4c57e6902219ecca1872e18e34365d8e54a0f407;hp=27513e975fbb1ef73e89b7abb573b5041769093c;hpb=3bcd5ec746a5575c0c66f8b34922c038eb363b0a;p=meshlink diff --git a/src/connection.h b/src/connection.h index 27513e97..25e122d0 100644 --- a/src/connection.h +++ b/src/connection.h @@ -34,12 +34,13 @@ typedef struct connection_status_t { uint16_t pinged: 1; /* sent ping */ uint16_t active: 1; /* 1 if active.. */ uint16_t connecting: 1; /* 1 if we are waiting for a non-blocking connect() to finish */ - uint16_t mst: 1; /* 1 if this connection is part of a minimum spanning tree */ + uint16_t unused: 1; uint16_t control: 1; /* 1 if this is a control connection */ uint16_t pcap: 1; /* 1 if this is a control connection requesting packet capture */ uint16_t log: 1; /* 1 if this is a control connection requesting log dump */ uint16_t invitation: 1; /* 1 if this is an invitation */ uint16_t invitation_used: 1; /* 1 if the invitation has been consumed */ + uint16_t initiator: 1; /* 1 if we initiated this connection */ } connection_status_t; #include "ecdsa.h" @@ -76,11 +77,6 @@ typedef struct connection_t { ecdsa_t *ecdsa; /* his public ECDSA key */ int protocol_major; /* used protocol */ int protocol_minor; /* used protocol */ - - // Unused/deprecated - uint32_t options; /* options for this connection */ - int incompression; - int outcompression; } connection_t; extern void init_connections(struct meshlink_handle *mesh);