X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fnet.h;h=33d273593cf3a2e917e9cd804e086f37748d1c8b;hb=35cbcab5e38ad286dfe85c6958b47a87c8885c41;hp=184dd934d050624491c2c972889ae1ac3976240e;hpb=4ea5d218c5c8e5739071bc6e57cf8404db5323ef;p=meshlink diff --git a/src/net.h b/src/net.h index 184dd934..33d27359 100644 --- a/src/net.h +++ b/src/net.h @@ -20,8 +20,6 @@ #ifndef __TINC_NET_H__ #define __TINC_NET_H__ -#include "cipher.h" -#include "digest.h" #include "event.h" #include "sockaddr.h" @@ -31,14 +29,12 @@ #define MTU 1518 /* 1500 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */ #endif -/* MAXSIZE is the maximum size of an encapsulated packet: MTU + seqno + padding + HMAC + compressor overhead */ -#define MAXSIZE (MTU + 4 + CIPHER_MAX_BLOCK_SIZE + DIGEST_MAX_SIZE + MTU/64 + 20) +/* MAXSIZE is the maximum size of an encapsulated packet: MTU + seqno + HMAC + compressor overhead */ +#define MAXSIZE (MTU + 4 + 32 + MTU/64 + 20) /* MAXBUFSIZE is the maximum size of a request: enough for a MAXSIZEd packet or a 8192 bits RSA key */ #define MAXBUFSIZE ((MAXSIZE > 2048 ? MAXSIZE : 2048) + 128) -#define MAXSOCKETS 8 /* Probably overkill... */ - typedef struct vpn_packet_t { struct { unsigned int probe:1; @@ -59,13 +55,6 @@ typedef enum packet_type_t { PACKET_PROBE } packet_type_t; -typedef struct listen_socket_t { - struct io_t tcp; - struct io_t udp; - sockaddr_t sa; - bool bindto; -} listen_socket_t; - #include "conf.h" #include "list.h" @@ -80,14 +69,9 @@ typedef struct outgoing_t { } outgoing_t; extern int maxoutbufsize; -extern int seconds_till_retry; extern int addressfamily; extern unsigned replaywin; -extern bool localdiscovery; -extern sockaddr_t localdiscovery_address; -extern listen_socket_t listen_socket[MAXSOCKETS]; -extern int listen_sockets; extern int keylifetime; extern int max_connection_burst; extern bool do_prune;