summaryrefslogtreecommitdiff
path: root/src/nm-active-connection.h
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2017-09-25 19:06:02 +0200
committerThomas Haller <thaller@redhat.com>2017-10-05 11:50:31 +0200
commit817a45bfe6d867ef2eb9b63a148db34e51c61817 (patch)
tree6138f4921d82e55c0632e2ce023b665b1812ab26 /src/nm-active-connection.h
parentd7bbc05b734937d4271d8c265244892f603c1ac4 (diff)
downloadNetworkManager-817a45bfe6d867ef2eb9b63a148db34e51c61817.tar.gz
libnm: add NMActivationStateFlags
No flags yet implemented. https://bugzilla.redhat.com/show_bug.cgi?id=1454883
Diffstat (limited to 'src/nm-active-connection.h')
-rw-r--r--src/nm-active-connection.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/nm-active-connection.h b/src/nm-active-connection.h
index 8d3478c79d..5562b42f07 100644
--- a/src/nm-active-connection.h
+++ b/src/nm-active-connection.h
@@ -39,6 +39,7 @@
#define NM_ACTIVE_CONNECTION_SPECIFIC_OBJECT "specific-object"
#define NM_ACTIVE_CONNECTION_DEVICES "devices"
#define NM_ACTIVE_CONNECTION_STATE "state"
+#define NM_ACTIVE_CONNECTION_STATE_FLAGS "state-flags"
#define NM_ACTIVE_CONNECTION_DEFAULT "default"
#define NM_ACTIVE_CONNECTION_IP4_CONFIG "ip4-config"
#define NM_ACTIVE_CONNECTION_DHCP4_CONFIG "dhcp4-config"
@@ -145,6 +146,19 @@ void nm_active_connection_set_state (NMActiveConnection *self,
NMActiveConnectionState state,
NMActiveConnectionStateReason reason);
+NMActivationStateFlags nm_active_connection_get_state_flags (NMActiveConnection *self);
+
+void nm_active_connection_set_state_flags_full (NMActiveConnection *self,
+ NMActivationStateFlags state_flags,
+ NMActivationStateFlags mask);
+
+static inline void
+nm_active_connection_set_state_flags (NMActiveConnection *self,
+ NMActivationStateFlags state_flags)
+{
+ nm_active_connection_set_state_flags_full (self, state_flags, state_flags);
+}
+
NMDevice * nm_active_connection_get_device (NMActiveConnection *self);
gboolean nm_active_connection_set_device (NMActiveConnection *self, NMDevice *device);