| Top |
| NMActiveConnection * | activating-connection | Read |
| GPtrArray * | active-connections | Read |
| GPtrArray * | all-devices | Read |
| gboolean | can-modify | Read |
| GPtrArray * | checkpoints | Read |
| GPtrArray * | connections | Read |
| NMConnectivityState | connectivity | Read |
| gboolean | connectivity-check-available | Read |
| gboolean | connectivity-check-enabled | Read / Write |
| GPtrArray * | devices | Read |
| GPtrArray * | dns-configuration | Read |
| gchar * | dns-mode | Read |
| gchar * | dns-rc-manager | Read |
| gchar * | hostname | Read |
| guint | metered | Read |
| gboolean | networking-enabled | Read / Write |
| gboolean | nm-running | Read |
| NMActiveConnection * | primary-connection | Read |
| gboolean | startup | Read |
| NMState | state | Read |
| gchar * | version | Read |
| gboolean | wimax-enabled | Read / Write |
| gboolean | wimax-hardware-enabled | Read |
| gboolean | wireless-enabled | Read / Write |
| gboolean | wireless-hardware-enabled | Read |
| gboolean | wwan-enabled | Read / Write |
| gboolean | wwan-hardware-enabled | Read |
| void | active-connection-added | Run First |
| void | active-connection-removed | Run First |
| void | any-device-added | Run First |
| void | any-device-removed | Run First |
| void | connection-added | Run First |
| void | connection-removed | Run First |
| void | device-added | Run First |
| void | device-removed | Run First |
| void | permission-changed | Run First |
GBoxed ╰── NMDnsEntry GEnum ├── NMClientError ├── NMClientPermission ╰── NMClientPermissionResult GObject ╰── NMClient
GQuark
nm_client_error_quark (void);
Registers an error quark for NMClient if necessary.
void
nm_dns_entry_unref (NMDnsEntry *entry);
Decreases the reference count of the object. If the reference count reaches zero, the object will be destroyed.
Since: 1.6
const char *
nm_dns_entry_get_interface (NMDnsEntry *entry);
Gets the interface on which name servers are contacted.
Since: 1.6
const char * const *
nm_dns_entry_get_nameservers (NMDnsEntry *entry);
Gets the list of name servers for this entry.
Since: 1.6
const char * const *
nm_dns_entry_get_domains (NMDnsEntry *entry);
Gets the list of DNS domains.
Since: 1.6
int
nm_dns_entry_get_priority (NMDnsEntry *entry);
Gets the priority of the entry
Since: 1.6
gboolean
nm_dns_entry_get_vpn (NMDnsEntry *entry);
Gets whether the entry refers to VPN name servers.
Since: 1.6
NMClient * nm_client_new (GCancellable *cancellable,GError **error);
Creates a new NMClient.
Note that this will do blocking D-Bus calls to initialize the
client. You can use nm_client_new_async() if you want to avoid
that.
void nm_client_new_async (GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Creates a new NMClient and begins asynchronously initializing it.
callback
will be called when it is done; use
nm_client_new_finish() to get the result. Note that on an error,
the callback can be invoked with two first parameters as NULL.
cancellable |
a GCancellable, or |
|
callback |
callback to call when the client is created |
|
user_data |
data for |
NMClient * nm_client_new_finish (GAsyncResult *result,GError **error);
Gets the result of an nm_client_new_async() call.
const char *
nm_client_get_version (NMClient *client);
Gets NetworkManager version.
NMState
nm_client_get_state (NMClient *client);
Gets the current daemon state.
gboolean
nm_client_get_startup (NMClient *client);
Tests whether the daemon is still in the process of activating connections at startup.
gboolean
nm_client_get_nm_running (NMClient *client);
Determines whether the daemon is running.
gboolean
nm_client_networking_get_enabled (NMClient *client);
Whether networking is enabled or disabled.
gboolean nm_client_networking_set_enabled (NMClient *client,gboolean enabled,GError **error);
Enables or disables networking. When networking is disabled, all controlled interfaces are disconnected and deactivated. When networking is enabled, all controlled interfaces are available for activation.
gboolean
nm_client_wireless_get_enabled (NMClient *client);
Determines whether the wireless is enabled.
void nm_client_wireless_set_enabled (NMClient *client,gboolean enabled);
Enables or disables wireless devices.
gboolean
nm_client_wireless_hardware_get_enabled
(NMClient *client);
Determines whether the wireless hardware is enabled.
gboolean
nm_client_wwan_get_enabled (NMClient *client);
Determines whether WWAN is enabled.
void nm_client_wwan_set_enabled (NMClient *client,gboolean enabled);
Enables or disables WWAN devices.
gboolean
nm_client_wwan_hardware_get_enabled (NMClient *client);
Determines whether the WWAN hardware is enabled.
gboolean
nm_client_wimax_get_enabled (NMClient *client);
Determines whether WiMAX is enabled.
void nm_client_wimax_set_enabled (NMClient *client,gboolean enabled);
Enables or disables WiMAX devices.
gboolean
nm_client_wimax_hardware_get_enabled (NMClient *client);
Determines whether the WiMAX hardware is enabled.
gboolean
nm_client_connectivity_check_get_available
(NMClient *client);
Determine whether connectivity checking is available. This requires that the URI of a connectivity service has been set in the configuration file.
Since: 1.10
gboolean
nm_client_connectivity_check_get_enabled
(NMClient *client);
Determine whether connectivity checking is enabled.
Since: 1.10
void nm_client_connectivity_check_set_enabled (NMClient *client,gboolean enabled);
Enable or disable connectivity checking. Note that if a connectivity checking URI has not been configured, this will not have any effect.
Since: 1.10
gboolean nm_client_get_logging (NMClient *client,char **level,char **domains,GError **error);
Gets NetworkManager current logging level and domains.
gboolean nm_client_set_logging (NMClient *client,const char *level,const char *domains,GError **error);
Sets NetworkManager logging level and/or domains.
NMClientPermissionResult nm_client_get_permission_result (NMClient *client,NMClientPermission permission);
Requests the result of a specific permission, which indicates whether the client can or cannot perform the action the permission represents
client |
a NMClient |
|
permission |
the permission for which to return the result, one of NMClientPermission |
NMConnectivityState
nm_client_get_connectivity (NMClient *client);
Gets the current network connectivity state. Contrast
nm_client_check_connectivity() and
nm_client_check_connectivity_async(), which re-check the
connectivity state first before returning any information.
NMConnectivityState nm_client_check_connectivity (NMClient *client,GCancellable *cancellable,GError **error);
Updates the network connectivity state and returns the (new)
current state. Contrast nm_client_get_connectivity(), which returns
the most recent known state without re-checking.
This is a blocking call; use nm_client_check_connectivity_async()
if you do not want to block.
void nm_client_check_connectivity_async (NMClient *client,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Asynchronously updates the network connectivity state and invokes
callback
when complete. Contrast nm_client_get_connectivity(),
which (immediately) returns the most recent known state without
re-checking, and nm_client_check_connectivity(), which blocks.
client |
an NMClient |
|
cancellable |
||
callback |
callback to call with the result |
|
user_data |
data for |
NMConnectivityState nm_client_check_connectivity_finish (NMClient *client,GAsyncResult *result,GError **error);
Retrieves the result of an nm_client_check_connectivity_async()
call.
gboolean nm_client_save_hostname (NMClient *client,const char *hostname,GCancellable *cancellable,GError **error);
Requests that the machine's persistent hostname be set to the specified value or cleared.
client |
the |
|
hostname |
the new persistent hostname to set, or |
[allow-none] |
cancellable |
a GCancellable, or |
|
error |
return location for GError |
void nm_client_save_hostname_async (NMClient *client,const char *hostname,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Requests that the machine's persistent hostname be set to the specified value or cleared.
client |
the |
|
hostname |
the new persistent hostname to set, or |
[allow-none] |
cancellable |
a GCancellable, or |
|
callback |
callback to be called when the operation completes. |
[scope async] |
user_data |
caller-specific data passed to |
[closure] |
gboolean nm_client_save_hostname_finish (NMClient *client,GAsyncResult *result,GError **error);
Gets the result of an nm_client_save_hostname_async() call.
client |
the |
|
result |
the result passed to the GAsyncReadyCallback |
|
error |
return location for GError |
const GPtrArray *
nm_client_get_devices (NMClient *client);
Gets all the known network devices. Use nm_device_get_type() or the
NM_IS_DEVICE_XXXX functions to determine what kind of
device member of the returned array is, and then you may use device-specific
methods such as nm_device_ethernet_get_hw_address().
const GPtrArray *
nm_client_get_all_devices (NMClient *client);
Gets both real devices and device placeholders (eg, software devices which
do not currently exist, but could be created automatically by NetworkManager
if one of their NMDevice::ActivatableConnections was activated). Use
nm_device_is_real() to determine whether each device is a real device or
a placeholder.
Use nm_device_get_type() or the NM_IS_DEVICE_XXXX() functions to determine
what kind of device each member of the returned array is, and then you may
use device-specific methods such as nm_device_ethernet_get_hw_address().
a GPtrArray containing all the NMDevices. The returned array is owned by the NMClient object and should not be modified.
[transfer none][element-type NMDevice]
Since: 1.2
NMDevice * nm_client_get_device_by_path (NMClient *client,const char *object_path);
NMDevice * nm_client_get_device_by_iface (NMClient *client,const char *iface);
const GPtrArray *
nm_client_get_active_connections (NMClient *client);
Gets the active connections.
a GPtrArray containing all the active NMActiveConnections. The returned array is owned by the client and should not be modified.
[transfer none][element-type NMActiveConnection]
NMActiveConnection *
nm_client_get_primary_connection (NMClient *client);
Gets the NMActiveConnection corresponding to the primary active network device.
In particular, when there is no VPN active, or the VPN does not have the default route, this returns the active connection that has the default route. If there is a VPN active with the default route, then this function returns the active connection that contains the route to the VPN endpoint.
If there is no default route, or the default route is over a
non-NetworkManager-recognized device, this will return NULL.
NMActiveConnection *
nm_client_get_activating_connection (NMClient *client);
Gets the NMActiveConnection corresponding to a currently-activating connection that is expected to become the new “primary-connection” upon successful activation.
void nm_client_activate_connection_async (NMClient *client,NMConnection *connection,NMDevice *device,const char *specific_object,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Asynchronously starts a connection to a particular network using the
configuration settings from connection
and the network device device
.
Certain connection types also take a "specific object" which is the object
path of a connection- specific object, like an NMAccessPoint for Wi-Fi
connections, or an NMWimaxNsp for WiMAX connections, to which you wish to
connect. If the specific object is not given, NetworkManager can, in some
cases, automatically determine which network to connect to given the settings
in connection
.
If connection
is not given for a device-based activation, NetworkManager
picks the best available connection for the device and activates it.
Note that the callback is invoked when NetworkManager has started activating the new connection, not when it finishes. You can use the returned NMActiveConnection object (in particular, “state”) to track the activation to its completion.
client |
a NMClient |
|
connection |
an NMConnection. |
[allow-none] |
device |
the NMDevice. |
[allow-none] |
specific_object |
the object path of a connection-type-specific
object this activation should use. This parameter is currently ignored for
wired and mobile broadband connections, and the value of |
[allow-none] |
cancellable |
a GCancellable, or |
|
callback |
callback to be called when the activation has started |
|
user_data |
caller-specific data passed to |
NMActiveConnection * nm_client_activate_connection_finish (NMClient *client,GAsyncResult *result,GError **error);
Gets the result of a call to nm_client_activate_connection_async().
the new NMActiveConnection on success, NULL on
failure, in which case error
will be set.
[transfer full]
void nm_client_add_and_activate_connection_async (NMClient *client,NMConnection *partial,NMDevice *device,const char *specific_object,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Adds a new connection using the given details (if any) as a template,
automatically filling in missing settings with the capabilities of the given
device and specific object. The new connection is then asynchronously
activated as with nm_client_activate_connection_async(). Cannot be used for
VPN connections at this time.
Note that the callback is invoked when NetworkManager has started activating the new connection, not when it finishes. You can used the returned NMActiveConnection object (in particular, “state”) to track the activation to its completion.
client |
a NMClient |
|
partial |
an NMConnection to add; the connection may be
partially filled (or even |
[allow-none] |
device |
the NMDevice |
|
specific_object |
the object path of a connection-type-specific
object this activation should use. This parameter is currently ignored for
wired and mobile broadband connections, and the value of |
[allow-none] |
cancellable |
a GCancellable, or |
|
callback |
callback to be called when the activation has started |
|
user_data |
caller-specific data passed to |
NMActiveConnection * nm_client_add_and_activate_connection_finish (NMClient *client,GAsyncResult *result,GError **error);
Gets the result of a call to nm_client_add_and_activate_connection_async().
You can call nm_active_connection_get_connection() on the returned
NMActiveConnection to find the path of the created NMConnection.
the new NMActiveConnection on success, NULL on
failure, in which case error
will be set.
[transfer full]
gboolean nm_client_deactivate_connection (NMClient *client,NMActiveConnection *active,GCancellable *cancellable,GError **error);
Deactivates an active NMActiveConnection.
client |
a NMClient |
|
active |
the NMActiveConnection to deactivate |
|
cancellable |
a GCancellable, or |
|
error |
void nm_client_deactivate_connection_async (NMClient *client,NMActiveConnection *active,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Asynchronously deactivates an active NMActiveConnection.
client |
a NMClient |
|
active |
the NMActiveConnection to deactivate |
|
cancellable |
a GCancellable, or |
|
callback |
callback to be called when the deactivation has completed |
|
user_data |
caller-specific data passed to |
gboolean nm_client_deactivate_connection_finish (NMClient *client,GAsyncResult *result,GError **error);
Gets the result of a call to nm_client_deactivate_connection_async().
const GPtrArray *
nm_client_get_connections (NMClient *client);
an array containing all connections provided by the remote settings service. The returned array is owned by the NMClient object and should not be modified.
The connections are as received from D-Bus and might not validate according
to nm_connection_verify().
[transfer none][element-type NMRemoteConnection]
NMRemoteConnection * nm_client_get_connection_by_id (NMClient *client,const char *id);
Returns the first matching NMRemoteConnection matching a given id
.
the remote connection object on success, or NULL if no
matching object was found.
The connection is as received from D-Bus and might not validate according
to nm_connection_verify().
[transfer none]
NMRemoteConnection * nm_client_get_connection_by_path (NMClient *client,const char *path);
Returns the NMRemoteConnection representing the connection at path
.
the remote connection object on success, or NULL if the object was
not known
The connection is as received from D-Bus and might not validate according
to nm_connection_verify().
[transfer none]
NMRemoteConnection * nm_client_get_connection_by_uuid (NMClient *client,const char *uuid);
Returns the NMRemoteConnection identified by uuid
.
the remote connection object on success, or NULL if the object was
not known
The connection is as received from D-Bus and might not validate according
to nm_connection_verify().
[transfer none]
void nm_client_add_connection_async (NMClient *client,NMConnection *connection,gboolean save_to_disk,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Requests that the remote settings service add the given settings to a new
connection. If save_to_disk
is TRUE, the connection is immediately written
to disk; otherwise it is initially only stored in memory, but may be saved
later by calling the connection's nm_remote_connection_commit_changes()
method.
connection
is untouched by this function and only serves as a template of
the settings to add. The NMRemoteConnection object that represents what
NetworkManager actually added is returned to callback
when the addition
operation is complete.
Note that the NMRemoteConnection returned in callback
may not contain
identical settings to connection
as NetworkManager may perform automatic
completion and/or normalization of connection properties.
client |
the |
|
connection |
the connection to add. Note that this object's settings will be added, not the object itself |
|
save_to_disk |
whether to immediately save the connection to disk |
|
cancellable |
a GCancellable, or |
|
callback |
callback to be called when the add operation completes. |
[scope async] |
user_data |
caller-specific data passed to |
[closure] |
NMRemoteConnection * nm_client_add_connection_finish (NMClient *client,GAsyncResult *result,GError **error);
Gets the result of a call to nm_client_add_connection_async().