reply ipv4-icmp
[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 send_icmp6_response(void* cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
42 void send_icmp4_response(void* cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
43
44 size_t
45 send_udp_service (void *cls, size_t size, void *buf);
46
47 GNUNET_HashCode* address6_mapping_exists(unsigned char addr[]);
48 GNUNET_HashCode* address4_mapping_exists(uint32_t addr);
49
50 unsigned int port_in_ports (uint64_t ports, uint16_t port);
51
52 void
53 send_pkt_to_peer (void *cls,
54                   const struct GNUNET_PeerIdentity *peer,
55                   const struct GNUNET_TRANSPORT_ATS_Information *atsi);
56
57 /**
58  * The configuration to use
59  */
60 extern const struct GNUNET_CONFIGURATION_Handle *cfg;
61
62 /**
63  * The handle to mesh
64  */
65 extern struct GNUNET_MESH_Handle *mesh_handle;
66
67 /**
68  * The hashmap containing the mappings from ipv6-addresses to gnunet-descriptors
69  */
70 extern struct GNUNET_CONTAINER_MultiHashMap* hashmap;
71
72 struct map_entry {
73     /** The description of the service (used for service) */
74     struct GNUNET_vpn_service_descriptor desc;
75
76     /** The real address of the service (used for remote) */
77     char addrlen;
78     char addr[16];
79
80     struct GNUNET_MESH_Tunnel *tunnel;
81     uint16_t namelen;
82     char additional_ports[8192];
83
84     struct GNUNET_CONTAINER_HeapNode* heap_node;
85     GNUNET_HashCode hash;
86     /**
87      * After this struct the name is located in DNS-Format!
88      */
89 };
90
91 /**
92  * Sets a bit active in a bitArray.
93  *
94  * @param bitArray memory area to set the bit in
95  * @param bitIdx which bit to set
96  */
97 void setBit (char *bitArray, unsigned int bitIdx);
98
99 /**
100  * Clears a bit from bitArray.
101  *
102  * @param bitArray memory area to set the bit in
103  * @param bitIdx which bit to unset
104  */
105 void clearBit (char *bitArray, unsigned int bitIdx);
106
107 /**
108  * Checks if a bit is active in the bitArray
109  *
110  * @param bitArray memory area to set the bit in
111  * @param bitIdx which bit to test
112  * @return GNUNET_YES if the bit is set, GNUNET_NO if not.
113  */
114 int testBit (char *bitArray, unsigned int bitIdx);
115
116 struct remote_addr
117 {
118   char addrlen;
119   unsigned char addr[16];
120   char proto;
121 };
122
123 #endif /* end of include guard: GNUNET-DAEMON-VPN_H */