fix
[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 /**
37  * Start the helper-process
38  */
39 void start_helper_and_schedule(void *cls,
40                                const struct GNUNET_SCHEDULER_TaskContext *tc);
41
42 /**
43  * Restart the helper-process
44  */
45 void restart_helper(void* cls, const struct GNUNET_SCHEDULER_TaskContext* tskctx);
46
47 /**
48  * Read from the helper-process
49  */
50 void helper_read(void* cls, const struct GNUNET_SCHEDULER_TaskContext* tsdkctx);
51
52 /**
53  * Send an dns-answer-packet to the helper
54  */
55 void helper_write(void* cls, const struct GNUNET_SCHEDULER_TaskContext* tsdkctx);
56
57 /**
58  * Receive packets from the helper-process
59  */
60 void message_token(void *cls,
61                    void *client,
62                    const struct GNUNET_MessageHeader *message);
63
64 void write_to_helper(void* buf, size_t len);
65
66 void schedule_helper_write(struct GNUNET_TIME_Relative, void* cls);
67
68 #endif /* end of include guard: GNUNET-DAEMON-VPN-HELPER_H */