2 net.h -- header for net.c
3 Copyright (C) 1998,1999,2000 Ivo Timmermans <zarq@iname.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 $Id: net.h,v 1.10 2000/10/18 20:12:09 zarq Exp $
22 #ifndef __TINC_NET_H__
23 #define __TINC_NET_H__
29 #define MAXSIZE 1700 /* should be a bit more than the MTU for the tapdevice */
32 #define MAC_ADDR_S "%02x:%02x:%02x:%02x:%02x:%02x"
33 #define MAC_ADDR_V(x) ((unsigned char*)&(x))[0],((unsigned char*)&(x))[1], \
34 ((unsigned char*)&(x))[2],((unsigned char*)&(x))[3], \
35 ((unsigned char*)&(x))[4],((unsigned char*)&(x))[5]
37 #define IP_ADDR_S "%d.%d.%d.%d"
39 #ifdef WORDS_BIGENDIAN
40 # define IP_ADDR_V(x) ((unsigned char*)&(x))[0],((unsigned char*)&(x))[1], \
41 ((unsigned char*)&(x))[2],((unsigned char*)&(x))[3]
43 # define IP_ADDR_V(x) ((unsigned char*)&(x))[3],((unsigned char*)&(x))[2], \
44 ((unsigned char*)&(x))[1],((unsigned char*)&(x))[0]
47 #define MAXBUFSIZE 4096 /* Probably way too much, but it must fit every possible request. */
50 #define INDIRECTDATA 0x0001 /* Used to indicate that this host has to be reached indirect */
51 #define EXPORTINDIRECTDATA 0x0002 /* Used to indicate uplink that it has to tell others to do INDIRECTDATA */
52 #define TCPONLY 0x0004 /* Tells sender to send packets over TCP instead of UDP (for firewalls) */
59 typedef unsigned long ipv4_t;
61 typedef ipv4_t ip_t; /* alias for ipv4_t */
68 typedef unsigned short port_t;
70 typedef short length_t;
72 typedef struct vpn_packet_t {
73 length_t len; /* the actual number of bytes in the `data' field */
74 unsigned char data[MAXSIZE];
77 typedef struct passphrase_t {
79 unsigned char *phrase;
82 typedef struct status_bits_t {
83 int pinged:1; /* sent ping */
84 int got_pong:1; /* received pong */
85 int meta:1; /* meta connection exists */
86 int active:1; /* 1 if active.. */
87 int outgoing:1; /* I myself asked for this conn */
88 int termreq:1; /* the termination of this connection was requested */
89 int remove:1; /* Set to 1 if you want this connection removed */
90 int timeout:1; /* 1 if gotten timeout */
91 int validkey:1; /* 1 if we currently have a valid key for him */
92 int waitingforkey:1; /* 1 if we already sent out a request */
93 int dataopen:1; /* 1 if we have a valid UDP connection open */
94 int encryptout:1; /* 1 if we can encrypt outgoing traffic */
95 int decryptin:1; /* 1 if we have to decrypt incoming traffic */
99 typedef struct option_bits_t {
103 typedef struct queue_element_t {
105 struct queue_element_t *prev;
106 struct queue_element_t *next;
109 typedef struct packet_queue_t {
110 queue_element_t *head;
111 queue_element_t *tail;
114 typedef struct enc_key_t {
122 extern int total_tap_in;
123 extern int total_tap_out;
124 extern int total_socket_in;
125 extern int total_socket_out;
127 extern char *unknown;
129 extern char *request_name[256];
130 extern char *status_text[10];
132 #include "connlist.h" /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
134 extern int str2opt(const char *);
135 extern char *opt2str(int);
136 extern int send_packet(ip_t, vpn_packet_t *);
137 extern int setup_network_connections(void);
138 extern void close_network_connections(void);
139 extern void main_loop(void);
140 extern int setup_vpn_connection(conn_list_t *);
141 extern void terminate_connection(conn_list_t *);
142 extern void flush_queues(conn_list_t *);
143 extern int xrecv(vpn_packet_t *);
144 extern void add_queue(packet_queue_t **, void *, size_t);
146 #endif /* __TINC_NET_H__ */