diff options
author | 2021-03-23 12:24:42 -0600 | |
---|---|---|
committer | 2021-03-23 12:24:42 -0600 | |
commit | 8801509656e955c27ebf4b9b3e39fbf717bb0367 (patch) | |
tree | f0b6f7fca1000df2fdad5cf58c751e779d9b3c9f | |
parent | README: separate build stage (diff) | |
download | wireguard-freebsd-8801509656e955c27ebf4b9b3e39fbf717bb0367.tar.xz wireguard-freebsd-8801509656e955c27ebf4b9b3e39fbf717bb0367.zip |
if_wg: drop pointtopoint flag
We'll try to work around this in wg-quick(8) and see what happens.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | src/if_wg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_wg.c b/src/if_wg.c index 9de10e8..35e59c2 100644 --- a/src/if_wg.c +++ b/src/if_wg.c @@ -3290,7 +3290,7 @@ wg_clone_create(struct if_clone *ifc, int unit, caddr_t params) wg_aip_init(&sc->sc_aips); if_setmtu(ifp, ETHERMTU - 80); - ifp->if_flags = IFF_POINTOPOINT | IFF_NOARP; + ifp->if_flags = IFF_NOARP; ifp->if_init = wg_init; ifp->if_reassign = wg_reassign; ifp->if_qflush = wg_qflush; |