mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-07 02:38:08 +02:00
libnm: drop unused NMRemoteConnectionError
NMRemoteConnection used to return NM_REMOTE_CONNECTION_ERROR_DISCONNECTED if you tried to operate on a connection that had been disconnected from its D-Bus proxy. But this disappeared in the gdbus port (since gdbus doesn't emit a signal when it happens, so it's harder to notice. And it's not clear why NMRemoteConnection did this when no other class did anyway...).
This commit is contained in:
parent
9c67b6fb08
commit
5632ac6730
3 changed files with 0 additions and 32 deletions
|
|
@ -369,8 +369,6 @@ global:
|
||||||
nm_remote_connection_delete;
|
nm_remote_connection_delete;
|
||||||
nm_remote_connection_delete_async;
|
nm_remote_connection_delete_async;
|
||||||
nm_remote_connection_delete_finish;
|
nm_remote_connection_delete_finish;
|
||||||
nm_remote_connection_error_get_type;
|
|
||||||
nm_remote_connection_error_quark;
|
|
||||||
nm_remote_connection_get_secrets;
|
nm_remote_connection_get_secrets;
|
||||||
nm_remote_connection_get_secrets_async;
|
nm_remote_connection_get_secrets_async;
|
||||||
nm_remote_connection_get_secrets_finish;
|
nm_remote_connection_get_secrets_finish;
|
||||||
|
|
|
||||||
|
|
@ -64,23 +64,6 @@ typedef struct {
|
||||||
|
|
||||||
#define NM_REMOTE_CONNECTION_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NM_TYPE_REMOTE_CONNECTION, NMRemoteConnectionPrivate))
|
#define NM_REMOTE_CONNECTION_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NM_TYPE_REMOTE_CONNECTION, NMRemoteConnectionPrivate))
|
||||||
|
|
||||||
/**
|
|
||||||
* nm_remote_connection_error_quark:
|
|
||||||
*
|
|
||||||
* Registers an error quark for #NMRemoteConnection if necessary.
|
|
||||||
*
|
|
||||||
* Returns: the error quark used for #NMRemoteConnection errors.
|
|
||||||
**/
|
|
||||||
GQuark
|
|
||||||
nm_remote_connection_error_quark (void)
|
|
||||||
{
|
|
||||||
static GQuark quark = 0;
|
|
||||||
|
|
||||||
if (G_UNLIKELY (quark == 0))
|
|
||||||
quark = g_quark_from_static_string ("nm-remote-connection-error-quark");
|
|
||||||
return quark;
|
|
||||||
}
|
|
||||||
|
|
||||||
/****************************************************************/
|
/****************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -38,19 +38,6 @@ G_BEGIN_DECLS
|
||||||
#define NM_REMOTE_CONNECTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_REMOTE_CONNECTION, NMRemoteConnectionClass))
|
#define NM_REMOTE_CONNECTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_REMOTE_CONNECTION, NMRemoteConnectionClass))
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* NMRemoteConnectionError:
|
|
||||||
* @NM_REMOTE_CONNECTION_ERROR_UNKNOWN: unknown or unclassified error
|
|
||||||
* @NM_REMOTE_CONNECTION_ERROR_DISCONNECTED: dbus disconnected
|
|
||||||
*/
|
|
||||||
typedef enum {
|
|
||||||
NM_REMOTE_CONNECTION_ERROR_UNKNOWN = 0, /*< nick=UnknownError >*/
|
|
||||||
NM_REMOTE_CONNECTION_ERROR_DISCONNECTED, /*< nick=Disconnected >*/
|
|
||||||
} NMRemoteConnectionError;
|
|
||||||
|
|
||||||
#define NM_REMOTE_CONNECTION_ERROR (nm_remote_connection_error_quark ())
|
|
||||||
GQuark nm_remote_connection_error_quark (void);
|
|
||||||
|
|
||||||
/* Properties */
|
/* Properties */
|
||||||
#define NM_REMOTE_CONNECTION_DBUS_CONNECTION "dbus-connection"
|
#define NM_REMOTE_CONNECTION_DBUS_CONNECTION "dbus-connection"
|
||||||
#define NM_REMOTE_CONNECTION_PATH "path"
|
#define NM_REMOTE_CONNECTION_PATH "path"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue