Re: [PATCH v2 00/42] VPN association state, dual IP support and WG fixes
Christian Hewitt <[email protected]> Wed, 29 Oct 2025 05:40:18 +0400
| Newsgroups | dev.linux.lists.connman |
|---|---|
| Message-ID | <[email protected]> |
> On 13 Aug 2025, at 7:01=E2=80=AFpm, Jussi Laakkonen = <[email protected]> wrote: >=20 > This patch set (1) adds the association state also for the VPNs, (2) = implements > dual IP support for VPNs and (3) contains fixes for Wireguard address, > especially for FQDN handling. This is a combination of all three = improvements > for the sake of testing them together. [snip] Patch 21/42 #includes both inet.h and arpa/inet.h; the former results in = a compile error. This change resolves it: diff --git a/src/shared/util.h b/src/shared/util.h index baaca31e..30630f93 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -25,7 +25,6 @@ #include <glib.h> #include <stdbool.h> -#include <inet.h> #include <arpa/inet.h> typedef void (*util_debug_func_t)(const char *str, void *user_data); With that nit solved I was running the series for several months with no issues. However the latest ConnMan release now gives me connection problems and although patches still compile I had to revert them. I=E2=80=99= ve not yet had time to bisect and find the breaking change. Christian