Testing and core related changes.
[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_icmp_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* address_mapping_exists(unsigned char addr[]);
48
49 unsigned int port_in_ports (uint64_t ports, uint16_t port);
50
51 void
52 send_udp_to_peer (void *cls,
53                   const struct GNUNET_PeerIdentity *peer,
54                   const struct GNUNET_TRANSPORT_ATS_Information *atsi);
55
56 /**
57  * The configuration to use
58  */
59 extern const struct GNUNET_CONFIGURATION_Handle *cfg;
60
61 /**
62  * The handle to mesh
63  */
64 extern struct GNUNET_MESH_Handle *mesh_handle;
65
66 /**
67  * The hashmap containing the mappings from ipv6-addresses to gnunet-descriptors
68  */
69 extern struct GNUNET_CONTAINER_MultiHashMap* hashmap;
70
71 struct map_entry {
72     struct GNUNET_vpn_service_descriptor desc;
73     struct GNUNET_MESH_Tunnel *tunnel;
74     uint16_t namelen;
75     uint64_t additional_ports;
76     /**
77      * After this struct the name is located in DNS-Format!
78      */
79 };
80
81 #endif /* end of include guard: GNUNET-DAEMON-VPN_H */