NetworkManager/src/libnm-core-aux-intern
Jan Vaclav b74b6bf867 aux-intern: add explicit cast for strchr()
`addr` is always reallocated in this branch, so it
is safe to cast the result of strchr to char* here
to silence the const-qualifier warning.
2026-04-14 11:33:47 +02:00
..
tests ip: configurable address pool and lease time of DHCP server in shared mode 2024-12-11 09:20:15 +01:00
meson.build ip: configurable address pool and lease time of DHCP server in shared mode 2024-12-11 09:20:15 +01:00
nm-auth-subject.c all: use NM_MIN() instead of MIN() 2023-11-15 09:32:20 +01:00
nm-auth-subject.h all: use _NM_G_TYPE_CHECK_INSTANCE_CAST() for internal uses 2022-12-16 10:55:03 +01:00
nm-common-macros.h wifi: add "wifi.cloned-mac-address=stable-ssid" 2023-11-16 13:07:54 +01:00
nm-libnm-core-utils.c aux-intern: add explicit cast for strchr() 2026-04-14 11:33:47 +02:00
nm-libnm-core-utils.h mptcp: set the laminar flag by default 2025-11-19 15:01:58 +01:00
README.md build: move "libnm-core/" to "src/" and split it 2021-02-18 19:46:51 +01:00

libnm-core-aux-intern

libnm-core-aux-intern is a static library that:

Basically, it is a static library with utility functions that extends libnm-core-impl (the part that is public API of libnm), but it is also used by libnm-core-impl itself.

That means:

Note that libnm-core-aux-intern only uses public API of libnm.

This directory should not be added to the include search path. Instead, users should fully qualify the include like #include "libnm-core-aux-intern/nm-auth-subject.h".