summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2023-10-26 13:27:07 +0200
committerThomas Haller <thaller@redhat.com>2023-11-15 17:59:26 +0100
commit3435bc3011d5c6c4643ce71531de0c28c79f165a (patch)
treeaffee21f597fab2214b8d843b5f9a611ab2c0fa8
parent7b5e8381f087809e6cdcd0e88b274d186c75266b (diff)
libnm: move NMValueStrv definition in header
-rw-r--r--src/libnm-core-impl/nm-setting-private.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/libnm-core-impl/nm-setting-private.h b/src/libnm-core-impl/nm-setting-private.h
index bdb21480a6..70b19ee2a2 100644
--- a/src/libnm-core-impl/nm-setting-private.h
+++ b/src/libnm-core-impl/nm-setting-private.h
@@ -20,6 +20,14 @@
/*****************************************************************************/
+/* This holds a property of type NM_VALUE_TYPE_STRV. You probably want
+ * to use nm_strvarray_*() API with this. */
+typedef struct {
+ GArray *arr;
+} NMValueStrv;
+
+/*****************************************************************************/
+
struct _NMRefString;
typedef struct {
@@ -277,14 +285,6 @@ gboolean _nm_setting_clear_secrets(NMSetting *setting,
/*****************************************************************************/
-/* This holds a property of type NM_VALUE_TYPE_STRV. You probably want
- * to use nm_strvarray_*() API with this. */
-typedef struct {
- GArray *arr;
-} NMValueStrv;
-
-/*****************************************************************************/
-
struct _NMRange {
int refcount;
guint64 start;