aboutsummaryrefslogtreecommitdiff
path: root/src/vpn
diff options
context:
space:
mode:
Diffstat (limited to 'src/vpn')
-rw-r--r--src/vpn/gnunet-daemon-vpn-helper.h4
-rw-r--r--src/vpn/gnunet-daemon-vpn.h10
2 files changed, 6 insertions, 8 deletions
diff --git a/src/vpn/gnunet-daemon-vpn-helper.h b/src/vpn/gnunet-daemon-vpn-helper.h
index 963fafd09..8e0ee5a0f 100644
--- a/src/vpn/gnunet-daemon-vpn-helper.h
+++ b/src/vpn/gnunet-daemon-vpn-helper.h
@@ -62,8 +62,8 @@ void helper_write (void *cls,
62/** 62/**
63 * Receive packets from the helper-process 63 * Receive packets from the helper-process
64 */ 64 */
65void message_token (void *cls, 65void message_token (void *cls, void *client,
66 void *client, const struct GNUNET_MessageHeader *message); 66 const struct GNUNET_MessageHeader *message);
67 67
68void write_to_helper (void *buf, size_t len); 68void write_to_helper (void *buf, size_t len);
69 69
diff --git a/src/vpn/gnunet-daemon-vpn.h b/src/vpn/gnunet-daemon-vpn.h
index ac6e50c72..4f4cf5a0f 100644
--- a/src/vpn/gnunet-daemon-vpn.h
+++ b/src/vpn/gnunet-daemon-vpn.h
@@ -42,18 +42,16 @@ void send_icmp6_response (void *cls,
42void send_icmp4_response (void *cls, 42void send_icmp4_response (void *cls,
43 const struct GNUNET_SCHEDULER_TaskContext *tc); 43 const struct GNUNET_SCHEDULER_TaskContext *tc);
44 44
45size_t 45size_t send_udp_service (void *cls, size_t size,
46 send_udp_service (void *cls, size_t size, void *buf); 46 void *buf);
47 47
48GNUNET_HashCode *address6_mapping_exists (unsigned char addr[]); 48GNUNET_HashCode *address6_mapping_exists (unsigned char addr[]);
49GNUNET_HashCode *address4_mapping_exists (uint32_t addr); 49GNUNET_HashCode *address4_mapping_exists (uint32_t addr);
50 50
51unsigned int port_in_ports (uint64_t ports, uint16_t port); 51unsigned int port_in_ports (uint64_t ports, uint16_t port);
52 52
53void 53void send_pkt_to_peer (void *cls, const struct GNUNET_PeerIdentity *peer,
54send_pkt_to_peer (void *cls, 54 const struct GNUNET_TRANSPORT_ATS_Information *atsi);
55 const struct GNUNET_PeerIdentity *peer,
56 const struct GNUNET_TRANSPORT_ATS_Information *atsi);
57 55
58/** 56/**
59 * The configuration to use 57 * The configuration to use