David Lamparter
David Lamparter
It'll generally exist but be empty on systems that don't need it. (Some 32bit platforms now need it due to 64bit time_t, and the platform may not have 64bit atomic...
With 64bit `time_t` (cf. #15881), it is no longer possible to store a timestamp (64bit) in a pointer (32bit). The RFAPI code does this: https://github.com/FRRouting/frr/blob/65c3b1e4c888610d72c761ec3a7d2b1cfb84bfa0/bgpd/rfapi/rfapi_rib.c#L1797 This needs to be fixed....
GCC only errors out on unrecognized _positive_ `-Wsomething` flags, negative ones it ignores... but then prints a "note" about whenever an unrelated(!) warning/error occurs. This is both annoying and confusing,...
EAP-TTLS support was added (or rather, enabled) in the strongSwan Android client in [2.0.0](https://docs.strongswan.org/docs/5.9/os/androidVpnClient.html#_2_0_0_2018_07_03), but then removed again in [2.0.1](https://docs.strongswan.org/docs/5.9/os/androidVpnClient.html#_2_0_1_2018_07_04) > as it caused major issues with commercial VPN services...
From current spec.md: https://github.com/bazelbuild/starlark/blob/3d97ad778123d9267be19375a2a412a21599da69/spec.md?plain=1#L1344-L1359 `a` and `b` are listed as both _module_-scoped and _file_-scoped, which isn't exactly possible. I'm assuming this is an oversight with the https://github.com/bazelbuild/bazel/issues/5636 change and `a`...
Since commit 0c3a70c64430448c43fe12bf0ac044488352697c, with a config like this: ``` neighbor fe80::1234 remote-as external neighbor fe80::1234 interface eth0 neighbor fe80::1234 capability extended-nexthop ``` It gets (when trying to install an IPv4...
This adds support to pimd for advertising itself as Candidate RP. Also, bugfixes for the BSM code... hoooo boy what a mess :sob: WORK IN PROGRESS. No tests yet. Those...
Please refer to individual commits. Fixes that got accumulated during C-RP/C-BSR development: - DR priority range was wrong, 0 is valid - sending null registers before register stop age-out wasn't...
This tells hosts on the subnet if (and which) NAT64 prefix is in use. Useful for things like xlat464, or local dns64. Updated from the previous -03 draft implementation. (PLC...
First go around and fix a bunch of mixups in test_seqlock, then make TSAN understand that the world is not on fire. Fixes: #16244 (hopefully)