NetworkManager/src/nm-daemon-helper
Thomas Haller c42f6f0997 daemon-helper: use _nm_strerror_r() to avoid non-thread-safe strerror()
Yes, there probably are not multiple threads here. It's a matter of principle to
not use smelly functions.

Also, copy the "errno" value we want to print, before calling various functions.
2023-09-12 12:39:43 +00:00
..
meson.build core: add infrastructure for spawning a helper process 2021-06-11 21:59:11 +02:00
nm-daemon-helper.c daemon-helper: use _nm_strerror_r() to avoid non-thread-safe strerror() 2023-09-12 12:39:43 +00:00
README.md all: add some README.md files describing the purpose of our sources 2021-08-19 17:51:11 +02:00

nm-daemon-helper

A internal helper application that is spawned by NetworkManager to perform certain actions.

Currently all it does is doing a reverse DNS lookup, which cannot be done by NetworkManager because the operation requires to reconfigure the libc resolver (which is a process-wide operation).

This is not directly useful to the user.