X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fnet.h;h=b1792883382439c2961bb9e1be864f35efc0cd6b;hb=b322126576c52ffbc9a91d818125fc461fa17d1b;hp=419f961f553ae707768fd561ae57a1777595e64c;hpb=ed2dddd420c8718006008b68e29ee93c5a1c3a79;p=tinc diff --git a/src/net.h b/src/net.h index 419f961f..b1792883 100644 --- a/src/net.h +++ b/src/net.h @@ -21,11 +21,15 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#include "system.h" + #include "ipv6.h" #include "cipher.h" #include "digest.h" #include "event.h" +#define EPOLL_MAX_EVENTS_PER_LOOP 32 + #ifdef ENABLE_JUMBOGRAMS #define MTU 9018 /* 9000 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */ #else @@ -118,7 +122,7 @@ typedef struct outgoing_t { timeout_t ev; } outgoing_t; -extern list_t *outgoing_list; +extern list_t outgoing_list; extern int maxoutbufsize; extern int seconds_till_retry; @@ -182,7 +186,7 @@ extern void handle_new_meta_connection(void *data, int flags); extern void handle_new_unix_connection(void *data, int flags); extern int setup_listen_socket(const sockaddr_t *sa); extern int setup_vpn_in_socket(const sockaddr_t *sa); -extern bool send_sptps_data(node_t *to, node_t *from, int type, const void *data, size_t len); +extern bool send_sptps_data(struct node_t *to, struct node_t *from, int type, const void *data, size_t len); extern bool receive_sptps_record(void *handle, uint8_t type, const void *data, uint16_t len); extern void send_packet(struct node_t *n, vpn_packet_t *packet); extern void receive_tcppacket(struct connection_t *c, const char *buffer, size_t length);