mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-26 08:50:07 +01:00
The name "nm-sudo" reminds of the "sudo" tool, and this is a bit confusing because it's not related. Rename the service to "nm-priv-helper", which stands for "NM privileged helper". https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/938
15 lines
596 B
C
15 lines
596 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
|
|
#ifndef __NM_PRIV_HELPER_CALL_H__
|
|
#define __NM_PRIV_HELPER_CALL_H__
|
|
|
|
#include "../libnm-base/nm-priv-helper-utils.h"
|
|
|
|
typedef void (*NMPrivHelperCallGetFDCallback)(int fd_take, GError *error, gpointer user_data);
|
|
|
|
void nm_priv_helper_call_get_fd(NMPrivHelperGetFDType fd_type,
|
|
GCancellable *cancellable,
|
|
NMPrivHelperCallGetFDCallback callback,
|
|
gpointer user_data);
|
|
|
|
#endif /* __NM_PRIV_HELPER_CALL_H__ */
|