mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-18 08:08:09 +02:00
The old NMExportedConnection was used for both client and server-side classes, which was a mistake and made the code very complicated to follow. Additionally, all PolicyKit operations were synchronous, and PK operations can block for a long time (ie for user input) before returning, so they need to be async. But NMExportedConnection and NMSysconfigConnection didn't allow for async PK ops at all. Use this opportunity to clean up the mess and create GInterfaces that both server and client objects implement, so that the connection editor and applet can operate on generic objects like they did before (using the interfaces) but can perform specific operations (like async PK verification of callers) depending on whether they are local or remote or whatever.
69 lines
2.9 KiB
C
69 lines
2.9 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
/* NetworkManager -- Network link manager
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Copyright (C) 2007 - 2008 Novell, Inc.
|
|
* Copyright (C) 2007 - 2009 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef NM_SETTINGS_SYSTEM_INTERFACE_H
|
|
#define NM_SETTINGS_SYSTEM_INTERFACE_H
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include "NetworkManager.h"
|
|
|
|
#define NM_TYPE_SETTINGS_SYSTEM_INTERFACE (nm_settings_system_interface_get_type ())
|
|
#define NM_SETTINGS_SYSTEM_INTERFACE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_SETTINGS_SYSTEM_INTERFACE, NMSettingsSystemInterface))
|
|
#define NM_IS_SETTINGS_SYSTEM_INTERFACE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_SETTINGS_SYSTEM_INTERFACE))
|
|
#define NM_SETTINGS_SYSTEM_INTERFACE_GET_INTERFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), NM_TYPE_SETTINGS_SYSTEM_INTERFACE, NMSettingsSystemInterface))
|
|
|
|
#define NM_SETTINGS_SYSTEM_INTERFACE_HOSTNAME "hostname"
|
|
#define NM_SETTINGS_SYSTEM_INTERFACE_CAN_MODIFY "can-modify"
|
|
|
|
typedef enum {
|
|
NM_SETTINGS_SYSTEM_INTERFACE_PROP_FIRST = 0x1000,
|
|
|
|
NM_SETTINGS_SYSTEM_INTERFACE_PROP_HOSTNAME = NM_SETTINGS_SYSTEM_INTERFACE_PROP_FIRST,
|
|
NM_SETTINGS_SYSTEM_INTERFACE_PROP_CAN_MODIFY
|
|
} NMSettingsSystemInterfaceProp;
|
|
|
|
|
|
typedef struct _NMSettingsSystemInterface NMSettingsSystemInterface;
|
|
|
|
|
|
typedef void (*NMSettingsSystemSaveHostnameFunc) (NMSettingsSystemInterface *settings,
|
|
GError *error,
|
|
gpointer user_data);
|
|
|
|
struct _NMSettingsSystemInterface {
|
|
GTypeInterface g_iface;
|
|
|
|
/* Methods */
|
|
gboolean (*save_hostname) (NMSettingsSystemInterface *settings,
|
|
const char *hostname,
|
|
NMSettingsSystemSaveHostnameFunc callback,
|
|
gpointer user_data);
|
|
};
|
|
|
|
GType nm_settings_system_interface_get_type (void);
|
|
|
|
gboolean nm_settings_system_interface_save_hostname (NMSettingsSystemInterface *settings,
|
|
const char *hostname,
|
|
NMSettingsSystemSaveHostnameFunc callback,
|
|
gpointer user_data);
|
|
|
|
#endif /* NM_SETTINGS_SYSTEM_INTERFACE_H */
|