diff options
| author | Michael Biebl <biebl@debian.org> | 2024-02-13 22:23:40 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2024-02-13 22:23:40 +0100 |
| commit | 6681f77b757bbc42ce5c8868ee9142b7ebc8c059 (patch) | |
| tree | f713e759b7c255ebeea83351f05dd466fd31422f /src/libnm-core-intern | |
| parent | 70e18d99b8e3e77bb37e218d7ac582130156f8ef (diff) | |
New upstream version 1.45.91 upstream/1.45.91
Diffstat (limited to 'src/libnm-core-intern')
| -rw-r--r-- | src/libnm-core-intern/nm-core-internal.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libnm-core-intern/nm-core-internal.h b/src/libnm-core-intern/nm-core-internal.h index 8e257337..dedc90b2 100644 --- a/src/libnm-core-intern/nm-core-internal.h +++ b/src/libnm-core-intern/nm-core-internal.h @@ -907,6 +907,14 @@ struct _NMSettInfoProperty { * is not deprecated. This flag is about the deprecation of the D-Bus representation * of a property. */ bool dbus_deprecated : 1; + + /* Whether the property is an alias. + * + * This flag indicates whether a property is an alias of another. This is used + * during _init_direct() to allow two or more properties to set the value of + * the same field. + */ + bool direct_is_aliased_field : 1; }; typedef struct { |