mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-23 20:10:07 +01:00
These SPDX license identifiers are deprecated ([1]). Update them. [1] https://spdx.org/licenses/ sed \ -e '1 s%^/\* SPDX-License-Identifier: \(GPL-2.0\|LGPL-2.1\)+ \*/$%/* SPDX-License-Identifier: \1-or-later */%' \ -e '1,2 s%^\(--\|#\|//\) SPDX-License-Identifier: \(GPL-2.0\|LGPL-2.1\)+$%\1 SPDX-License-Identifier: \2-or-later%' \ -i \ $(git grep -l SPDX-License-Identifier -- \ ':(exclude)shared/c-*/' \ ':(exclude)shared/n-*/' \ ':(exclude)shared/systemd/src' \ ':(exclude)src/systemd/src')
25 lines
921 B
C
25 lines
921 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
|
|
#ifndef __NM_DBUS_COMPAT_H__
|
|
#define __NM_DBUS_COMPAT_H__
|
|
|
|
#define DBUS_SERVICE_DBUS "org.freedesktop.DBus"
|
|
|
|
#define DBUS_PATH_DBUS "/org/freedesktop/DBus"
|
|
|
|
#define DBUS_INTERFACE_DBUS "org.freedesktop.DBus"
|
|
#define DBUS_INTERFACE_INTROSPECTABLE "org.freedesktop.DBus.Introspectable"
|
|
#define DBUS_INTERFACE_OBJECT_MANAGER "org.freedesktop.DBus.ObjectManager"
|
|
#define DBUS_INTERFACE_PEER "org.freedesktop.DBus.Peer"
|
|
#define DBUS_INTERFACE_PROPERTIES "org.freedesktop.DBus.Properties"
|
|
|
|
#define DBUS_NAME_FLAG_ALLOW_REPLACEMENT 0x1
|
|
#define DBUS_NAME_FLAG_REPLACE_EXISTING 0x2
|
|
#define DBUS_NAME_FLAG_DO_NOT_QUEUE 0x4
|
|
|
|
#define DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER 1
|
|
#define DBUS_REQUEST_NAME_REPLY_IN_QUEUE 2
|
|
#define DBUS_REQUEST_NAME_REPLY_EXISTS 3
|
|
#define DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER 4
|
|
|
|
#endif /* __NM_DBUS_COMPAT_H__ */
|