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