]> git.meshlink.io Git - meshlink/blobdiff - src/connection.h
Reduce locking in Catta callback functions to a minimum.
[meshlink] / src / connection.h
index acab448490830755920c83a27d95403e873f94c4..ca934a4976412eba97d346dc259cf50f76d559a6 100644 (file)
@@ -52,12 +52,12 @@ typedef struct connection_status_t {
 #include "edge.h"
 #include "net.h"
 #include "node.h"
+#include "submesh.h"
 
 typedef struct connection_t {
        char *name;                     /* name he claims to have */
 
        union sockaddr_t address;       /* his real (internet) ip */
-       char *hostname;                 /* the hostname of its real ip */
        int protocol_major;             /* used protocol */
        int protocol_minor;             /* used protocol */
 
@@ -72,6 +72,7 @@ typedef struct connection_t {
 
        ecdsa_t *ecdsa;                 /* his public ECDSA key */
        sptps_t sptps;
+       struct submesh_t *submesh;              /* his submesh handle if available in invitation file */
 
        int incompression;
        int outcompression;