TAPServerConnection: Fix builds with LLVM toolchain

On an Alpine system using a full LLVM toolchain, building fails because `fd_set`/`timeval` are undefined.
This commit is contained in:
Joshua Vandaële 2026-06-24 08:53:44 +02:00
parent 8230647205
commit d52afbf83b
No known key found for this signature in database
GPG Key ID: 6BB95AF71EB0F406

View File

@ -11,6 +11,7 @@
#include <ws2ipdef.h>
#else
#include <netinet/in.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>