move GNUNET_TRANSPORT_ATS_ to GNUNET_ATS_
[oweals/gnunet.git] / src / vpn / gnunet-daemon-vpn.h
1 /*
2      This file is part of GNUnet.
3      (C) 2010 Christian Grothoff
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file vpn/gnunet-daemon-vpn.h
23  * @brief
24  * @author Philipp Toelke
25  */
26 #ifndef GNUNET_DAEMON_VPN_H
27 #define GNUNET_DAEMON_VPN_H
28
29 #include "gnunet-service-dns-p.h"
30
31 /**
32  * This gets scheduled with cls pointing to an answer_packet and does everything
33  * needed in order to send it to the helper.
34  *
35  * At the moment this means "inventing" and IPv6-Address for .gnunet-services and
36  * doing nothing for "real" services.
37  */
38 void
39 process_answer (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
40
41 void
42 send_icmp6_response (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
43 void
44 send_icmp4_response (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
45
46 size_t
47 send_udp_service (void *cls, size_t size, void *buf);
48
49 GNUNET_HashCode *
50 address6_mapping_exists (unsigned char addr[]);
51 GNUNET_HashCode *
52 address4_mapping_exists (uint32_t addr);
53
54 unsigned int
55 port_in_ports (uint64_t ports, uint16_t port);
56
57 void
58 send_pkt_to_peer (void *cls, const struct GNUNET_PeerIdentity *peer,
59                   const struct GNUNET_ATS_Information *atsi);
60
61 /**
62  * The configuration to use
63  */
64 extern const struct GNUNET_CONFIGURATION_Handle *cfg;
65
66 /**
67  * The handle to mesh
68  */
69 extern struct GNUNET_MESH_Handle *mesh_handle;
70
71 /**
72  * The hashmap containing the mappings from ipv6-addresses to gnunet-descriptors
73  */
74 extern struct GNUNET_CONTAINER_MultiHashMap *hashmap;
75
76 struct map_entry
77 {
78     /** The description of the service (used for service) */
79   struct GNUNET_vpn_service_descriptor desc;
80
81     /** The real address of the service (used for remote) */
82   char addrlen;
83   char addr[16];
84
85   struct GNUNET_MESH_Tunnel *tunnel;
86   uint16_t namelen;
87   char additional_ports[8192];
88
89   struct GNUNET_CONTAINER_HeapNode *heap_node;
90   GNUNET_HashCode hash;
91     /**
92      * After this struct the name is located in DNS-Format!
93      */
94 };
95
96 /**
97  * Sets a bit active in a bitArray.
98  *
99  * @param bitArray memory area to set the bit in
100  * @param bitIdx which bit to set
101  */
102 void
103 setBit (char *bitArray, unsigned int bitIdx);
104
105 /**
106  * Clears a bit from bitArray.
107  *
108  * @param bitArray memory area to set the bit in
109  * @param bitIdx which bit to unset
110  */
111 void
112 clearBit (char *bitArray, unsigned int bitIdx);
113
114 /**
115  * Checks if a bit is active in the bitArray
116  *
117  * @param bitArray memory area to set the bit in
118  * @param bitIdx which bit to test
119  * @return GNUNET_YES if the bit is set, GNUNET_NO if not.
120  */
121 int
122 testBit (char *bitArray, unsigned int bitIdx);
123
124 struct remote_addr
125 {
126   char addrlen;
127   unsigned char addr[16];
128   char proto;
129 };
130
131 #endif /* end of include guard: GNUNET-DAEMON-VPN_H */