X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fnet.h;h=d66a1c7add4f7427e1285bd6cd5ae94e61dd316a;hb=38c25d62c2bc76908bd95fb21c8f5e39ad269884;hp=cadb76e8296c29aeae32a252310d575a3dffe28b;hpb=98edfb14fcc7167d24d440ed2772d0755daac3b7;p=tinc diff --git a/src/net.h b/src/net.h index cadb76e8..d66a1c7a 100644 --- a/src/net.h +++ b/src/net.h @@ -1,7 +1,7 @@ /* net.h -- header for net.c - Copyright (C) 1998-2003 Ivo Timmermans - 2000-2003 Guus Sliepen + Copyright (C) 1998-2005 Ivo Timmermans + 2000-2006 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,20 +17,21 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: net.h,v 1.9.4.72 2003/10/08 12:09:37 guus Exp $ + $Id$ */ #ifndef __TINC_NET_H__ #define __TINC_NET_H__ #include +#include #include "ipv6.h" #ifdef ENABLE_JUMBOGRAMS -#define MTU 9014 /* 9000 bytes payload + 14 bytes ethernet header */ +#define MTU 9018 /* 9000 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */ #else -#define MTU 1514 /* 1500 bytes payload + 14 bytes ethernet header */ +#define MTU 1518 /* 1500 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */ #endif #define MAXSIZE (MTU + 4 + EVP_MAX_BLOCK_LENGTH + EVP_MAX_MD_SIZE + MTU/64 + 20) /* MTU + seqno + padding + HMAC + compressor overhead */ @@ -99,6 +100,8 @@ typedef struct packet_queue_t { } packet_queue_t; typedef struct listen_socket_t { + struct event ev_tcp; + struct event ev_udp; int tcp; int udp; sockaddr_t sa; @@ -114,7 +117,7 @@ typedef struct outgoing_t { struct addrinfo *aip; } outgoing_t; -extern int maxtimeout; +extern int maxoutbufsize; extern int seconds_till_retry; extern int addressfamily; @@ -133,10 +136,10 @@ extern EVP_CIPHER_CTX packet_ctx; #include "node.h" extern void retry_outgoing(outgoing_t *); -extern void handle_incoming_vpn_data(int); +extern void handle_incoming_vpn_data(int, short, void *); extern void finish_connecting(struct connection_t *); extern void do_outgoing_connection(struct connection_t *); -extern bool handle_new_meta_connection(int); +extern void handle_new_meta_connection(int, short, void *); extern int setup_listen_socket(const sockaddr_t *); extern int setup_vpn_in_socket(const sockaddr_t *); extern void send_packet(const struct node_t *, vpn_packet_t *); @@ -150,6 +153,9 @@ extern int main_loop(void); extern void terminate_connection(struct connection_t *, bool); extern void flush_queue(struct node_t *); extern bool read_rsa_public_key(struct connection_t *); +extern void send_mtu_probe(struct node_t *); +extern void handle_device_data(int, short, void *); +extern void handle_meta_connection_data(int, short, void *); #ifndef HAVE_MINGW #define closesocket(s) close(s)