From 46de6f340ae179741fb475ad6858a7a56a34af4a Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 10 Nov 2016 23:28:35 +0100 Subject: socket: keep track of src address in sending packets --- src/packets.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/packets.h') diff --git a/src/packets.h b/src/packets.h index c491640..22ce8fa 100644 --- a/src/packets.h +++ b/src/packets.h @@ -37,7 +37,7 @@ void packet_send_handshake_cookie(struct wireguard_device *wg, struct sk_buff *i /* data.c */ int packet_create_data(struct sk_buff_head *queue, struct wireguard_peer *peer, void(*callback)(struct sk_buff_head *, struct wireguard_peer *)); -void packet_consume_data(struct sk_buff *skb, size_t offset, struct wireguard_device *wg, void(*callback)(struct sk_buff *, struct wireguard_peer *, struct sockaddr_storage *, bool used_new_key, int err)); +void packet_consume_data(struct sk_buff *skb, size_t offset, struct wireguard_device *wg, void(*callback)(struct sk_buff *, struct wireguard_peer *, struct endpoint *, bool, int)); #ifdef CONFIG_WIREGUARD_PARALLEL int packet_init_data_caches(void); -- cgit v1.2.3-59-g8ed1b