move GNUNET_TRANSPORT_ATS_ to GNUNET_ATS_
[oweals/gnunet.git] / src / vpn / gnunet-daemon-vpn-helper.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-helper.h
23  * @brief
24  * @author Philipp Toelke
25  */
26 #ifndef GNUNET_DAEMON_VPN_HELPER_H
27 #define GNUNET_DAEMON_VPN_HELPER_H
28
29 #include "gnunet-helper-vpn-api.h"
30
31 /**
32  * Handle to the helper. contains filedescriptors and such
33  */
34 extern struct GNUNET_VPN_HELPER_Handle *helper_handle;
35
36 extern GNUNET_SCHEDULER_TaskIdentifier shs_task;
37
38 /**
39  * Start the helper-process
40  */
41 void
42 start_helper_and_schedule (void *cls,
43                            const struct GNUNET_SCHEDULER_TaskContext *tc);
44
45 /**
46  * Restart the helper-process
47  */
48 void
49 restart_helper (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tskctx);
50
51 /**
52  * Read from the helper-process
53  */
54 void
55 helper_read (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tsdkctx);
56
57 /**
58  * Send an dns-answer-packet to the helper
59  */
60 void
61 helper_write (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tsdkctx);
62
63 /**
64  * Receive packets from the helper-process
65  */
66 void
67 message_token (void *cls, void *client,
68                const struct GNUNET_MessageHeader *message);
69
70 void
71 write_to_helper (void *buf, size_t len);
72
73 void
74 schedule_helper_write (struct GNUNET_TIME_Relative, void *cls);
75
76 #endif /* end of include guard: GNUNET-DAEMON-VPN-HELPER_H */