mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-25 12:40:21 +01:00
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/issues/1335 https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1698
23 lines
644 B
C
23 lines
644 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2012, 2013 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef NM_EDITOR_UTILS_H
|
|
#define NM_EDITOR_UTILS_H
|
|
|
|
typedef struct {
|
|
const char *name;
|
|
GType setting_type;
|
|
GType port_setting_type;
|
|
GType device_type;
|
|
gboolean virtual;
|
|
} NMEditorConnectionTypeData;
|
|
|
|
NMEditorConnectionTypeData **nm_editor_utils_get_connection_type_list(void);
|
|
NMEditorConnectionTypeData *nm_editor_utils_get_connection_type_data(NMConnection *conn);
|
|
|
|
NMConnection *
|
|
nm_editor_utils_create_connection(GType type, NMConnection *controller, NMClient *client);
|
|
|
|
#endif /* NM_EDITOR_UTILS_H */
|