mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 04:56:55 +02:00
41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
From 540881627fe8083207f9a2cfd01b931164c7ef4e Mon Sep 17 00:00:00 2001
|
|
From: Tobias Brunner <tobias@strongswan.org>
|
|
Date: Fri, 22 Mar 2024 10:42:34 +0100
|
|
Subject: [PATCH] farp: Fix build with musl C library
|
|
|
|
Same issue as described in the previous commit.
|
|
|
|
Fixes: 187c72d1afdc ("dhcp: Port the plugin to FreeBSD/macOS")
|
|
---
|
|
src/libcharon/plugins/farp/farp_spoofer.c | 7 ++++---
|
|
1 file changed, 4 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/src/libcharon/plugins/farp/farp_spoofer.c b/src/libcharon/plugins/farp/farp_spoofer.c
|
|
index 65451263f5f..7f2c9bef419 100644
|
|
--- a/src/libcharon/plugins/farp/farp_spoofer.c
|
|
+++ b/src/libcharon/plugins/farp/farp_spoofer.c
|
|
@@ -20,12 +20,14 @@
|
|
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
+#include <net/ethernet.h>
|
|
#include <sys/ioctl.h>
|
|
|
|
#if !defined(__APPLE__) && !defined(__FreeBSD__)
|
|
#include <sys/socket.h>
|
|
-#include <linux/if_arp.h>
|
|
-#include <linux/if_ether.h>
|
|
+#include <net/if_arp.h>
|
|
+#include <netinet/if_ether.h>
|
|
+#include <netpacket/packet.h>
|
|
#include <linux/filter.h>
|
|
#else
|
|
#include <net/bpf.h>
|
|
@@ -33,7 +35,6 @@
|
|
#include <net/if_dl.h>
|
|
#endif /* !defined(__APPLE__) && !defined(__FreeBSD__) */
|
|
|
|
-#include <net/ethernet.h>
|
|
#include <daemon.h>
|
|
#include <threading/thread.h>
|
|
#include <processing/jobs/callback_job.h>
|