- Use gai_strerror() where appropriate
[tinc] / src / net.h
1 /*
2     net.h -- header for net.c
3     Copyright (C) 1998-2002 Ivo Timmermans <zarq@iname.com>
4                   2000-2002 Guus Sliepen <guus@sliepen.warande.net>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: net.h,v 1.9.4.40 2002/02/20 22:15:32 guus Exp $
21 */
22
23 #ifndef __TINC_NET_H__
24 #define __TINC_NET_H__
25
26 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <netinet/in.h>
29 #include <sys/time.h>
30
31 #include "config.h"
32
33 #define MTU 1514     /* 1500 bytes payload + 14 bytes ethernet header */
34 #define MAXSIZE 1600 /* MTU + header (seqno) and trailer (CBC padding and HMAC) */
35
36 #define MAXBUFSIZE 2048 /* Probably way too much, but it must fit every possible request. */
37
38 typedef struct mac_t
39 {
40   unsigned char x[6];
41 } mac_t;
42
43 typedef struct ipv4_t
44 {
45   unsigned char x[4];
46 } ipv4_t;
47
48 typedef struct ip_mask_t {
49   ipv4_t address;
50   ipv4_t mask;
51 } ip_mask_t;
52
53 typedef struct ipv6_t
54 {
55   unsigned short x[8];
56 } ipv6_t;
57
58 typedef unsigned short port_t;
59
60 typedef short length_t;
61
62 typedef union {
63   struct sockaddr sa;
64   struct sockaddr_in in;
65   struct sockaddr_in6 in6;
66 } sockaddr_t;
67
68 #define SA_PORT(s) ((s.sa.sa_family==AF_INET)?s.in.sin_port:(s.sa.sa_family==AF_INET6)?s.in6.sin6_port:0)
69
70 #ifdef HAVE_LINUX
71  #define SA_LEN(s) sizeof(sockaddr_t)
72 #else
73  #define SA_LEN(s) (s.sa_len)
74 #endif
75
76 typedef struct vpn_packet_t {
77   length_t len;                 /* the actual number of bytes in the `data' field */
78   unsigned int seqno;           /* 32 bits sequence number (network byte order of course) */
79   unsigned char data[MAXSIZE];
80 } vpn_packet_t;
81
82 typedef struct queue_element_t {
83   void *packet;
84   struct queue_element_t *prev;
85   struct queue_element_t *next;
86 } queue_element_t;
87
88 typedef struct packet_queue_t {
89   queue_element_t *head;
90   queue_element_t *tail;
91 } packet_queue_t;
92
93 typedef struct outgoing_t {
94   char *name;
95   int timeout;
96   struct config_t *cfg;
97   struct addrinfo *ai;
98   struct addrinfo *aip;
99 } outgoing_t;
100
101 extern int maxtimeout;
102 extern int seconds_till_retry;
103 extern int addressfamily;
104
105 extern char *request_name[];
106 extern char *status_text[];
107
108 #include "connection.h"         /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
109
110 extern int tcp_socket;
111 extern int udp_socket;
112 extern int keyexpires;
113 extern int keylifetime;
114 extern int do_prune;
115 extern int do_purge;
116 extern char *myport;
117
118 extern void retry_outgoing(outgoing_t *);
119 extern void handle_incoming_vpn_data(void);
120 extern void finish_connecting(connection_t *);
121 extern void do_outgoing_connection(connection_t *);
122 extern int handle_new_meta_connection(void);
123 extern int setup_listen_socket(sockaddr_t *);
124 extern int setup_vpn_in_socket(sockaddr_t *);
125 extern void send_packet(struct node_t *, vpn_packet_t *);
126 extern void receive_packet(struct node_t *, vpn_packet_t *);
127 extern void receive_tcppacket(struct connection_t *, char *, int);
128 extern void broadcast_packet(struct node_t *, vpn_packet_t *);
129 extern int setup_network_connections(void);
130 extern void setup_outgoing_connection(struct outgoing_t *);
131 extern void try_outgoing_connections(void);
132 extern void close_network_connections(void);
133 extern void main_loop(void);
134 extern void terminate_connection(connection_t *, int);
135 extern void flush_queue(struct node_t *);
136 extern int read_rsa_public_key(struct connection_t *);
137
138 #endif /* __TINC_NET_H__ */