]> git.meshlink.io Git - meshlink-tiny/blobdiff - src/connection.h
Remove some unused variables.
[meshlink-tiny] / src / connection.h
index 248f80674e5af5f2413412f2cdef947f0233c1c1..d414e83d063f55ec7eb5b40eb7dd30a8ad9bdb97 100644 (file)
@@ -46,7 +46,6 @@ typedef struct connection_status_t {
 #include "ecdsa.h"
 #include "net.h"
 #include "node.h"
-#include "submesh.h"
 
 typedef struct connection_t {
        char *name;                     /* name he claims to have */
@@ -63,15 +62,12 @@ typedef struct connection_t {
        struct buffer_t inbuf;
        struct buffer_t outbuf;
        io_t io;                        /* input/output event on this metadata connection */
-       int tcplen;                     /* length of incoming TCPpacket */
        int allow_request;              /* defined if there's only one request possible */
        time_t last_ping_time;          /* last time we saw some activity from the other end or pinged them */
        time_t last_key_renewal;        /* last time we renewed the SPTPS key */
 
        struct outgoing_t *outgoing;    /* used to keep track of outgoing connections */
 
-       struct submesh_t *submesh;      /* his submesh handle if available in invitation file */
-
        // Only used during authentication
        ecdsa_t *ecdsa;                 /* his public ECDSA key */
        int protocol_major;             /* used protocol */