From 867254ea7c2b193fecf8cd36cc6e5dc53c290d92 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Fri, 29 Jun 2012 20:12:44 +0200 Subject: Imported Upstream version 0.9.5.95 --- docs/libnm-glib/html/NMDevice.html | 212 ++++++++- docs/libnm-glib/html/NMDeviceBond.html | 287 ++++++++++++ docs/libnm-glib/html/NMDeviceBt.html | 74 ++++ docs/libnm-glib/html/NMDeviceEthernet.html | 68 +++ docs/libnm-glib/html/NMDeviceInfiniband.html | 293 ++++++++++++ docs/libnm-glib/html/NMDeviceModem.html | 62 +++ docs/libnm-glib/html/NMDeviceOlpcMesh.html | 324 ++++++++++++++ docs/libnm-glib/html/NMDeviceVlan.html | 333 ++++++++++++++ docs/libnm-glib/html/NMDeviceWifi.html | 82 ++++ docs/libnm-glib/html/NMDeviceWimax.html | 72 ++- docs/libnm-glib/html/NMObject.html | 109 +++++ docs/libnm-glib/html/NMRemoteConnection.html | 67 +++ docs/libnm-glib/html/NMSecretAgent.html | 42 +- docs/libnm-glib/html/NMWimaxNsp.html | 4 +- docs/libnm-glib/html/api-index-full.html | 539 +++++++++++------------ docs/libnm-glib/html/ch02.html | 14 +- docs/libnm-glib/html/index.html | 14 +- docs/libnm-glib/html/index.sgml | 169 +++++++ docs/libnm-glib/html/libnm-glib-NMVPNPlugin.html | 52 ++- docs/libnm-glib/html/libnm-glib.devhelp2 | 139 ++++++ docs/libnm-glib/html/object-tree.html | 8 +- 21 files changed, 2645 insertions(+), 319 deletions(-) create mode 100644 docs/libnm-glib/html/NMDeviceBond.html create mode 100644 docs/libnm-glib/html/NMDeviceInfiniband.html create mode 100644 docs/libnm-glib/html/NMDeviceOlpcMesh.html create mode 100644 docs/libnm-glib/html/NMDeviceVlan.html (limited to 'docs/libnm-glib/html') diff --git a/docs/libnm-glib/html/NMDevice.html b/docs/libnm-glib/html/NMDevice.html index e507f9e0..5c6e7152 100644 --- a/docs/libnm-glib/html/NMDevice.html +++ b/docs/libnm-glib/html/NMDevice.html @@ -51,12 +51,15 @@ GError *error, gpointer user_data); #define NM_DEVICE_ACTIVE_CONNECTION +#define NM_DEVICE_AUTOCONNECT #define NM_DEVICE_CAPABILITIES #define NM_DEVICE_DEVICE_TYPE #define NM_DEVICE_DHCP4_CONFIG #define NM_DEVICE_DHCP6_CONFIG #define NM_DEVICE_DRIVER +#define NM_DEVICE_DRIVER_VERSION #define NM_DEVICE_FIRMWARE_MISSING +#define NM_DEVICE_FIRMWARE_VERSION #define NM_DEVICE_INTERFACE #define NM_DEVICE_IP4_CONFIG #define NM_DEVICE_IP6_CONFIG @@ -67,6 +70,9 @@ #define NM_DEVICE_STATE_REASON #define NM_DEVICE_UDI #define NM_DEVICE_VENDOR +gboolean nm_device_connection_compatible (NMDevice *device, + NMConnection *connection, + GError **error); gboolean nm_device_connection_valid (NMDevice *device, NMConnection *connection); void nm_device_disconnect (NMDevice *device, @@ -75,12 +81,15 @@ GSList * nm_device_filter_connections (NMDevice *device, const GSList *connections); NMActiveConnection * nm_device_get_active_connection (NMDevice *device); +gboolean nm_device_get_autoconnect (NMDevice *device); NMDeviceCapabilities nm_device_get_capabilities (NMDevice *device); NMDeviceType nm_device_get_device_type (NMDevice *device); NMDHCP4Config * nm_device_get_dhcp4_config (NMDevice *device); NMDHCP6Config * nm_device_get_dhcp6_config (NMDevice *device); const char * nm_device_get_driver (NMDevice *device); +const char * nm_device_get_driver_version (NMDevice *device); gboolean nm_device_get_firmware_missing (NMDevice *device); +const char * nm_device_get_firmware_version (NMDevice *device); const char * nm_device_get_iface (NMDevice *device); NMIP4Config * nm_device_get_ip4_config (NMDevice *device); NMIP6Config * nm_device_get_ip6_config (NMDevice *device); @@ -94,6 +103,8 @@ const char * char * nm_device_get_vendor (NMDevice *device); GObject * nm_device_new (DBusGConnection *connection, const char *path); +void nm_device_set_autoconnect (NMDevice *device, + gboolean autoconnect);
@@ -107,10 +118,10 @@ const char * NMDeviceModem +----NMDeviceBt +----NMDeviceWimax - +----NMDeviceOlpcMesh - +----NMDeviceInfiniband - +----NMDeviceBond - +----NMDeviceVlan + +----NMDeviceOlpcMesh + +----NMDeviceInfiniband + +----NMDeviceBond + +----NMDeviceVlan
@@ -123,12 +134,15 @@ NMDevice implements

Properties

   "active-connection"        NMActiveConnection*   : Read
+  "autoconnect"              gboolean              : Read / Write
   "capabilities"             guint                 : Read
   "device-type"              guint                 : Read
   "dhcp4-config"             NMDHCP4Config*        : Read
   "dhcp6-config"             NMDHCP6Config*        : Read
   "driver"                   gchar*                : Read
+  "driver-version"           gchar*                : Read
   "firmware-missing"         gboolean              : Read
+  "firmware-version"         gchar*                : Read
   "interface"                gchar*                : Read
   "ip-interface"             gchar*                : Read
   "ip4-config"               NMIP4Config*          : Read
@@ -207,6 +221,14 @@ NMDevice implements
 

+

NM_DEVICE_AUTOCONNECT

+
#define NM_DEVICE_AUTOCONNECT "autoconnect"
+
+

+

+
+
+

NM_DEVICE_CAPABILITIES

#define NM_DEVICE_CAPABILITIES "capabilities"
 
@@ -247,6 +269,14 @@ NMDevice implements

+

NM_DEVICE_DRIVER_VERSION

+
#define NM_DEVICE_DRIVER_VERSION "driver-version"
+
+

+

+
+
+

NM_DEVICE_FIRMWARE_MISSING

#define NM_DEVICE_FIRMWARE_MISSING "firmware-missing"
 
@@ -255,6 +285,14 @@ NMDevice implements

+

NM_DEVICE_FIRMWARE_VERSION

+
#define NM_DEVICE_FIRMWARE_VERSION "firmware-version"
+
+

+

+
+
+

NM_DEVICE_INTERFACE

#define NM_DEVICE_INTERFACE "interface"
 
@@ -335,6 +373,52 @@ NMDevice implements

+

nm_device_connection_compatible ()

+
gboolean            nm_device_connection_compatible     (NMDevice *device,
+                                                         NMConnection *connection,
+                                                         GError **error);
+

+Validates a given connection for a given NMDevice object and returns +whether the connection may be activated with the device. For example if +device is a WiFi device that supports only WEP encryption, the connection +will only be valid if it is a WiFi connection which describes a WEP or open +network, and will not be valid if it describes a WPA network, or if it is +an Ethernet, Bluetooth, WWAN, etc connection that is incompatible with the +device. +

+

+This function does the same as nm_device_connection_valid(), i.e. checking +compatibility of the given device and connection. But, in addition, it sets +GError when FALSE is returned. +

+
++ + + + + + + + + + + + + + + + + + +

device :

an NMDevice to validate connection against

connection :

an NMConnection to validate against device +

error :

return location for a GError, or NULL +

Returns :

+TRUE if the connection may be activated with this device, FALSE +if is incompatible with the device's capabilities and characteristics.
+
+
+

nm_device_connection_valid ()

gboolean            nm_device_connection_valid          (NMDevice *device,
                                                          NMConnection *connection);
@@ -466,6 +550,29 @@ not part of an active connection. [ +

nm_device_get_autoconnect ()

+
gboolean            nm_device_get_autoconnect           (NMDevice *device);
+

+Whether the NMDevice can be autoconnected. +

+
++ + + + + + + + + + +

device :

a NMDevice +

Returns :

+TRUE if the device is allowed to be autoconnected
+
+
+

nm_device_get_capabilities ()

NMDeviceCapabilities nm_device_get_capabilities         (NMDevice *device);

@@ -581,6 +688,29 @@ device, and must not be modified.


+

nm_device_get_driver_version ()

+
const char *        nm_device_get_driver_version        (NMDevice *device);
+

+Gets the driver version of the NMDevice. +

+
++ + + + + + + + + + +

device :

a NMDevice +

Returns :

the version of the device driver. This is the internal string used by the +device, and must not be modified.
+
+
+

nm_device_get_firmware_missing ()

gboolean            nm_device_get_firmware_missing      (NMDevice *device);

@@ -606,6 +736,29 @@ to be missing.


+

nm_device_get_firmware_version ()

+
const char *        nm_device_get_firmware_version      (NMDevice *device);
+

+Gets the firmware version of the NMDevice. +

+
++ + + + + + + + + + +

device :

a NMDevice +

Returns :

the firmware version of the device. This is the internal string used by the +device, and must not be modified.
+
+
+

nm_device_get_iface ()

const char *        nm_device_get_iface                 (NMDevice *device);

@@ -869,6 +1022,30 @@ Creates a new

+
+
+

nm_device_set_autoconnect ()

+
void                nm_device_set_autoconnect           (NMDevice *device,
+                                                         gboolean autoconnect);
+

+Enables or disables automatic activation of the NMDevice. +

+
++ + + + + + + + + + +

device :

a NMDevice +

autoconnect :

+TRUE to enable autoconnecting
+

Property Details

@@ -881,6 +1058,15 @@ The
+

The "autoconnect" property

+
  "autoconnect"              gboolean              : Read / Write
+

+Whether the device can auto-activate a connection. +

+

Default value: TRUE

+
+
+

The "capabilities" property

  "capabilities"             guint                 : Read

@@ -924,6 +1110,15 @@ The driver of the device.


+

The "driver-version" property

+
  "driver-version"           gchar*                : Read
+

+The version of the device driver. +

+

Default value: NULL

+
+
+

The "firmware-missing" property

  "firmware-missing"         gboolean              : Read

@@ -934,6 +1129,15 @@ for its operation.


+

The "firmware-version" property

+
  "firmware-version"         gchar*                : Read
+

+The firmware version of the device. +

+

Default value: NULL

+
+
+

The "interface" property

  "interface"                gchar*                : Read

diff --git a/docs/libnm-glib/html/NMDeviceBond.html b/docs/libnm-glib/html/NMDeviceBond.html new file mode 100644 index 00000000..0fb8a415 --- /dev/null +++ b/docs/libnm-glib/html/NMDeviceBond.html @@ -0,0 +1,287 @@ + + + + +NMDeviceBond + + + + + + + + + + + + + + + + + + + +

+
+
+ + +
+

NMDeviceBond

+

NMDeviceBond

+
+ +
+

Object Hierarchy

+
+  GObject
+   +----NMObject
+         +----NMDevice
+               +----NMDeviceBond
+
+
+
+

Implemented Interfaces

+

+NMDeviceBond implements + GInitable and GAsyncInitable.

+
+
+

Properties

+
+  "carrier"                  gboolean              : Read
+  "hw-address"               gchar*                : Read
+
+
+
+

Description

+

+

+
+
+

Details

+
+

NMDeviceBond

+
typedef struct _NMDeviceBond NMDeviceBond;
+

+

+
+
+
+

NMDeviceBondClass

+
typedef struct {
+	NMDeviceClass parent;
+
+	/* Padding for future expansion */
+	void (*_reserved1) (void);
+	void (*_reserved2) (void);
+	void (*_reserved3) (void);
+	void (*_reserved4) (void);
+	void (*_reserved5) (void);
+	void (*_reserved6) (void);
+} NMDeviceBondClass;
+
+

+

+
+
+
+

enum NMDeviceBondError

+
typedef enum {
+	NM_DEVICE_BOND_ERROR_UNKNOWN = 0,             /*< nick=UnknownError >*/
+	NM_DEVICE_BOND_ERROR_NOT_BOND_CONNECTION,     /*< nick=NotBondConnection >*/
+	NM_DEVICE_BOND_ERROR_INVALID_BOND_CONNECTION, /*< nick=InvalidBondConnection >*/
+	NM_DEVICE_BOND_ERROR_INTERFACE_MISMATCH,      /*< nick=InterfaceMismatch >*/
+} NMDeviceBondError;
+
+
++ + + + + + + + + + + + + + + + + + +

NM_DEVICE_BOND_ERROR_UNKNOWN

unknown or unclassified error +

NM_DEVICE_BOND_ERROR_NOT_BOND_CONNECTION

the connection was not of bond type +

NM_DEVICE_BOND_ERROR_INVALID_BOND_CONNECTION

the bond connection was invalid +

NM_DEVICE_BOND_ERROR_INTERFACE_MISMATCH

the interfaces of the connection and the device mismatched +
+
+
+
+

NM_DEVICE_BOND_CARRIER

+
#define NM_DEVICE_BOND_CARRIER     "carrier"
+
+

+

+
+
+
+

NM_DEVICE_BOND_ERROR

+
#define NM_DEVICE_BOND_ERROR nm_device_bond_error_quark ()
+
+

+

+
+
+
+

NM_DEVICE_BOND_HW_ADDRESS

+
#define NM_DEVICE_BOND_HW_ADDRESS  "hw-address"
+
+

+

+
+
+
+

nm_device_bond_error_quark ()

+
GQuark              nm_device_bond_error_quark          (void);
+

+Registers an error quark for NMDeviceBond if necessary. +

+
++ + + + +

Returns :

the error quark used for NMDeviceBond errors.
+
+
+
+

nm_device_bond_get_carrier ()

+
gboolean            nm_device_bond_get_carrier          (NMDeviceBond *device);
+

+Whether the device has carrier. +

+
++ + + + + + + + + + +

device :

a NMDeviceBond +

Returns :

+TRUE if the device has carrier
+
+
+
+

nm_device_bond_get_hw_address ()

+
const char *        nm_device_bond_get_hw_address       (NMDeviceBond *device);
+

+Gets the hardware (MAC) address of the NMDeviceBond +

+
++ + + + + + + + + + +

device :

a NMDeviceBond +

Returns :

the hardware address. This is the internal string used by the +device, and must not be modified.
+
+
+
+

nm_device_bond_new ()

+
GObject *           nm_device_bond_new                  (DBusGConnection *connection,
+                                                         const char *path);
+

+Creates a new NMDeviceBond. +

+
++ + + + + + + + + + + + + + +

connection :

the DBusGConnection +

path :

the DBus object path of the device

Returns :

a new device. [transfer full] +
+
+
+
+

Property Details

+
+

The "carrier" property

+
  "carrier"                  gboolean              : Read
+

+Whether the device has carrier. +

+

Default value: FALSE

+
+
+
+

The "hw-address" property

+
  "hw-address"               gchar*                : Read
+

+The hardware (MAC) address of the device. +

+

Default value: NULL

+
+
+
+ + + \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceBt.html b/docs/libnm-glib/html/NMDeviceBt.html index b41291a5..bc766453 100644 --- a/docs/libnm-glib/html/NMDeviceBt.html +++ b/docs/libnm-glib/html/NMDeviceBt.html @@ -45,9 +45,12 @@

Synopsis

                    NMDeviceBt;
                     NMDeviceBtClass;
+enum                NMDeviceBtError;
 #define             NM_DEVICE_BT_CAPABILITIES
+#define             NM_DEVICE_BT_ERROR
 #define             NM_DEVICE_BT_HW_ADDRESS
 #define             NM_DEVICE_BT_NAME
+GQuark              nm_device_bt_error_quark            (void);
 NMBluetoothCapabilities nm_device_bt_get_capabilities   (NMDeviceBt *device);
 const char *        nm_device_bt_get_hw_address         (NMDeviceBt *device);
 const char *        nm_device_bt_get_name               (NMDeviceBt *device);
@@ -111,6 +114,54 @@ NMDeviceBt implements
 

+

enum NMDeviceBtError

+
typedef enum {
+	NM_DEVICE_BT_ERROR_UNKNOWN = 0,           /*< nick=UnknownError >*/
+	NM_DEVICE_BT_ERROR_NOT_BT_CONNECTION,     /*< nick=NotBtConnection >*/
+	NM_DEVICE_BT_ERROR_INVALID_BT_CONNECTION, /*< nick=InvalidBtConnection >*/
+	NM_DEVICE_BT_ERROR_INVALID_DEVICE_MAC,    /*< nick=InvalidDeviceMac >*/
+	NM_DEVICE_BT_ERROR_MAC_MISMATCH,          /*< nick=MacMismatch >*/
+	NM_DEVICE_BT_ERROR_MISSING_DEVICE_CAPS,   /*< nick=MissingDeviceCaps >*/
+} NMDeviceBtError;
+
+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +

NM_DEVICE_BT_ERROR_UNKNOWN

unknown or unclassified error +

NM_DEVICE_BT_ERROR_NOT_BT_CONNECTION

the connection was not of bluetooth type +

NM_DEVICE_BT_ERROR_INVALID_BT_CONNECTION

the bluetooth connection was invalid +

NM_DEVICE_BT_ERROR_INVALID_DEVICE_MAC

the device's MAC was invalid +

NM_DEVICE_BT_ERROR_MAC_MISMATCH

the MACs of the connection and the device mismatched +

NM_DEVICE_BT_ERROR_MISSING_DEVICE_CAPS

the device missed required capabilities +
+
+
+

NM_DEVICE_BT_CAPABILITIES

#define NM_DEVICE_BT_CAPABILITIES "bt-capabilities"
 
@@ -119,6 +170,14 @@ NMDeviceBt implements

+

NM_DEVICE_BT_ERROR

+
#define NM_DEVICE_BT_ERROR nm_device_bt_error_quark ()
+
+

+

+
+
+

NM_DEVICE_BT_HW_ADDRESS

#define NM_DEVICE_BT_HW_ADDRESS   "hw-address"
 
@@ -135,6 +194,21 @@ NMDeviceBt implements

+

nm_device_bt_error_quark ()

+
GQuark              nm_device_bt_error_quark            (void);
+

+Registers an error quark for NMDeviceBt if necessary. +

+
++ + + + +

Returns :

the error quark used for NMDeviceBt errors.
+
+
+

nm_device_bt_get_capabilities ()

NMBluetoothCapabilities nm_device_bt_get_capabilities   (NMDeviceBt *device);

diff --git a/docs/libnm-glib/html/NMDeviceEthernet.html b/docs/libnm-glib/html/NMDeviceEthernet.html index 786a5842..94d959b6 100644 --- a/docs/libnm-glib/html/NMDeviceEthernet.html +++ b/docs/libnm-glib/html/NMDeviceEthernet.html @@ -45,10 +45,13 @@

Synopsis

                    NMDeviceEthernet;
                     NMDeviceEthernetClass;
+enum                NMDeviceEthernetError;
 #define             NM_DEVICE_ETHERNET_CARRIER
+#define             NM_DEVICE_ETHERNET_ERROR
 #define             NM_DEVICE_ETHERNET_HW_ADDRESS
 #define             NM_DEVICE_ETHERNET_PERMANENT_HW_ADDRESS
 #define             NM_DEVICE_ETHERNET_SPEED
+GQuark              nm_device_ethernet_error_quark      (void);
 gboolean            nm_device_ethernet_get_carrier      (NMDeviceEthernet *device);
 const char *        nm_device_ethernet_get_hw_address   (NMDeviceEthernet *device);
 const char *        nm_device_ethernet_get_permanent_hw_address
@@ -115,6 +118,48 @@ NMDeviceEthernet implements
 

+

enum NMDeviceEthernetError

+
typedef enum {
+	NM_DEVICE_ETHERNET_ERROR_UNKNOWN = 0,                 /*< nick=UnknownError >*/
+	NM_DEVICE_ETHERNET_ERROR_NOT_ETHERNET_CONNECTION,     /*< nick=NotEthernetConnection >*/
+	NM_DEVICE_ETHERNET_ERROR_INVALID_ETHERNET_CONNECTION, /*< nick=InvalidEthernetConnection >*/
+	NM_DEVICE_ETHERNET_ERROR_INVALID_DEVICE_MAC,          /*< nick=InvalidDeviceMac >*/
+	NM_DEVICE_ETHERNET_ERROR_MAC_MISMATCH,                /*< nick=MacMismatch >*/
+} NMDeviceEthernetError;
+
+
++ + + + + + + + + + + + + + + + + + + + + + +

NM_DEVICE_ETHERNET_ERROR_UNKNOWN

unknown or unclassified error +

NM_DEVICE_ETHERNET_ERROR_NOT_ETHERNET_CONNECTION

the connection was not of ethernet or PPPoE type +

NM_DEVICE_ETHERNET_ERROR_INVALID_ETHERNET_CONNECTION

the ethernet connection was invalid +

NM_DEVICE_ETHERNET_ERROR_INVALID_DEVICE_MAC

the device's MAC was invalid +

NM_DEVICE_ETHERNET_ERROR_MAC_MISMATCH

the MACs of the connection and the device mismatched +
+
+
+

NM_DEVICE_ETHERNET_CARRIER

#define NM_DEVICE_ETHERNET_CARRIER     "carrier"
 
@@ -123,6 +168,14 @@ NMDeviceEthernet implements

+

NM_DEVICE_ETHERNET_ERROR

+
#define NM_DEVICE_ETHERNET_ERROR nm_device_ethernet_error_quark ()
+
+

+

+
+
+

NM_DEVICE_ETHERNET_HW_ADDRESS

#define NM_DEVICE_ETHERNET_HW_ADDRESS  "hw-address"
 
@@ -147,6 +200,21 @@ NMDeviceEthernet implements

+

nm_device_ethernet_error_quark ()

+
GQuark              nm_device_ethernet_error_quark      (void);
+

+Registers an error quark for NMDeviceEthernet if necessary. +

+
++ + + + +

Returns :

the error quark used for NMDeviceEthernet errors.
+
+
+

nm_device_ethernet_get_carrier ()

gboolean            nm_device_ethernet_get_carrier      (NMDeviceEthernet *device);

diff --git a/docs/libnm-glib/html/NMDeviceInfiniband.html b/docs/libnm-glib/html/NMDeviceInfiniband.html new file mode 100644 index 00000000..c4253e5d --- /dev/null +++ b/docs/libnm-glib/html/NMDeviceInfiniband.html @@ -0,0 +1,293 @@ + + + + +NMDeviceInfiniband + + + + + + + + + + + + + + + + + + + +

+
+
+ + +
+

NMDeviceInfiniband

+

NMDeviceInfiniband

+
+ +
+

Object Hierarchy

+
+  GObject
+   +----NMObject
+         +----NMDevice
+               +----NMDeviceInfiniband
+
+
+
+

Implemented Interfaces

+

+NMDeviceInfiniband implements + GInitable and GAsyncInitable.

+
+
+

Properties

+
+  "carrier"                  gboolean              : Read
+  "hw-address"               gchar*                : Read
+
+
+
+

Description

+

+

+
+
+

Details

+
+

NMDeviceInfiniband

+
typedef struct _NMDeviceInfiniband NMDeviceInfiniband;
+

+

+
+
+
+

NMDeviceInfinibandClass

+
typedef struct {
+	NMDeviceClass parent;
+
+	/* Padding for future expansion */
+	void (*_reserved1) (void);
+	void (*_reserved2) (void);
+	void (*_reserved3) (void);
+	void (*_reserved4) (void);
+	void (*_reserved5) (void);
+	void (*_reserved6) (void);
+} NMDeviceInfinibandClass;
+
+

+

+
+
+
+

enum NMDeviceInfinibandError

+
typedef enum {
+	NM_DEVICE_INFINIBAND_ERROR_UNKNOWN = 0,                   /*< nick=UnknownError >*/
+	NM_DEVICE_INFINIBAND_ERROR_NOT_INFINIBAND_CONNECTION,     /*< nick=NotInfinibandConnection >*/
+	NM_DEVICE_INFINIBAND_ERROR_INVALID_INFINIBAND_CONNECTION, /*< nick=InvalidInfinibandConnection >*/
+	NM_DEVICE_INFINIBAND_ERROR_INVALID_DEVICE_MAC,            /*< nick=InvalidDeviceMac >*/
+	NM_DEVICE_INFINIBAND_ERROR_MAC_MISMATCH,                  /*< nick=MacMismatch >*/
+} NMDeviceInfinibandError;
+
+
++ + + + + + + + + + + + + + + + + + + + + + +

NM_DEVICE_INFINIBAND_ERROR_UNKNOWN

unknown or unclassified error +

NM_DEVICE_INFINIBAND_ERROR_NOT_INFINIBAND_CONNECTION

the connection was not of InfiniBand type +

NM_DEVICE_INFINIBAND_ERROR_INVALID_INFINIBAND_CONNECTION

the InfiniBand connection was invalid +

NM_DEVICE_INFINIBAND_ERROR_INVALID_DEVICE_MAC

the device's MAC was invalid +

NM_DEVICE_INFINIBAND_ERROR_MAC_MISMATCH

the MACs of the connection and the device mismatched +
+
+
+
+

NM_DEVICE_INFINIBAND_CARRIER

+
#define NM_DEVICE_INFINIBAND_CARRIER     "carrier"
+
+

+

+
+
+
+

NM_DEVICE_INFINIBAND_ERROR

+
#define NM_DEVICE_INFINIBAND_ERROR nm_device_infiniband_error_quark ()
+
+

+

+
+
+
+

NM_DEVICE_INFINIBAND_HW_ADDRESS

+
#define NM_DEVICE_INFINIBAND_HW_ADDRESS  "hw-address"
+
+

+

+
+
+
+

nm_device_infiniband_error_quark ()

+
GQuark              nm_device_infiniband_error_quark    (void);
+

+Registers an error quark for NMDeviceInfiniband if necessary. +

+
++ + + + +

Returns :

the error quark used for NMDeviceInfiniband errors.
+
+
+
+

nm_device_infiniband_get_carrier ()

+
gboolean            nm_device_infiniband_get_carrier    (NMDeviceInfiniband *device);
+

+Whether the device has carrier. +

+
++ + + + + + + + + + +

device :

a NMDeviceInfiniband +

Returns :

+TRUE if the device has carrier
+
+
+
+

nm_device_infiniband_get_hw_address ()

+
const char *        nm_device_infiniband_get_hw_address (NMDeviceInfiniband *device);
+

+Gets the hardware (MAC) address of the NMDeviceInfiniband +

+
++ + + + + + + + + + +

device :

a NMDeviceInfiniband +

Returns :

the hardware address. This is the internal string used by the +device, and must not be modified.
+
+
+
+

nm_device_infiniband_new ()

+
GObject *           nm_device_infiniband_new            (DBusGConnection *connection,
+                                                         const char *path);
+

+Creates a new NMDeviceInfiniband. +

+
++ + + + + + + + + + + + + + +

connection :

the DBusGConnection +

path :

the DBus object path of the device

Returns :

a new device. [transfer full] +
+
+
+
+

Property Details

+
+

The "carrier" property

+
  "carrier"                  gboolean              : Read
+

+Whether the device has carrier. +

+

Default value: FALSE

+
+
+
+

The "hw-address" property

+
  "hw-address"               gchar*                : Read
+

+The hardware (MAC) address of the device. +

+

Default value: NULL

+
+
+
+ + + \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceModem.html b/docs/libnm-glib/html/NMDeviceModem.html index 751da6e3..6dec6b03 100644 --- a/docs/libnm-glib/html/NMDeviceModem.html +++ b/docs/libnm-glib/html/NMDeviceModem.html @@ -45,8 +45,11 @@

Synopsis

                    NMDeviceModem;
                     NMDeviceModemClass;
+enum                NMDeviceModemError;
 #define             NM_DEVICE_MODEM_CURRENT_CAPABILITIES
+#define             NM_DEVICE_MODEM_ERROR
 #define             NM_DEVICE_MODEM_MODEM_CAPABILITIES
+GQuark              nm_device_modem_error_quark         (void);
 NMDeviceModemCapabilities nm_device_modem_get_current_capabilities
                                                         (NMDeviceModem *self);
 NMDeviceModemCapabilities nm_device_modem_get_modem_capabilities
@@ -108,6 +111,42 @@ NMDeviceModem implements
 

+

enum NMDeviceModemError

+
typedef enum {
+	NM_DEVICE_MODEM_ERROR_UNKNOWN = 0,              /*< nick=UnknownError >*/
+	NM_DEVICE_MODEM_ERROR_NOT_MODEM_CONNECTION,     /*< nick=NotModemConnection >*/
+	NM_DEVICE_MODEM_ERROR_INVALID_MODEM_CONNECTION, /*< nick=InvalidModemConnection >*/
+	NM_DEVICE_MODEM_ERROR_MISSING_DEVICE_CAPS,      /*< nick=MissingDeviceCaps >*/
+} NMDeviceModemError;
+
+
++ + + + + + + + + + + + + + + + + + +

NM_DEVICE_MODEM_ERROR_UNKNOWN

unknown or unclassified error +

NM_DEVICE_MODEM_ERROR_NOT_MODEM_CONNECTION

the connection was not of modem type +

NM_DEVICE_MODEM_ERROR_INVALID_MODEM_CONNECTION

the modem connection was invalid +

NM_DEVICE_MODEM_ERROR_MISSING_DEVICE_CAPS

the device missed required capabilities +
+
+
+

NM_DEVICE_MODEM_CURRENT_CAPABILITIES

#define NM_DEVICE_MODEM_CURRENT_CAPABILITIES "current-capabilities"
 
@@ -116,6 +155,14 @@ NMDeviceModem implements

+

NM_DEVICE_MODEM_ERROR

+
#define NM_DEVICE_MODEM_ERROR nm_device_modem_error_quark ()
+
+

+

+
+
+

NM_DEVICE_MODEM_MODEM_CAPABILITIES

#define NM_DEVICE_MODEM_MODEM_CAPABILITIES   "modem-capabilities"
 
@@ -124,6 +171,21 @@ NMDeviceModem implements

+

nm_device_modem_error_quark ()

+
GQuark              nm_device_modem_error_quark         (void);
+

+Registers an error quark for NMDeviceModem if necessary. +

+
++ + + + +

Returns :

the error quark used for NMDeviceModem errors.
+
+
+

nm_device_modem_get_current_capabilities ()

NMDeviceModemCapabilities nm_device_modem_get_current_capabilities
                                                         (NMDeviceModem *self);
diff --git a/docs/libnm-glib/html/NMDeviceOlpcMesh.html b/docs/libnm-glib/html/NMDeviceOlpcMesh.html new file mode 100644 index 00000000..2af9c04b --- /dev/null +++ b/docs/libnm-glib/html/NMDeviceOlpcMesh.html @@ -0,0 +1,324 @@ + + + + +NMDeviceOlpcMesh + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NMDeviceOlpcMesh

+

NMDeviceOlpcMesh

+
+ +
+

Object Hierarchy

+
+  GObject
+   +----NMObject
+         +----NMDevice
+               +----NMDeviceOlpcMesh
+
+
+
+

Implemented Interfaces

+

+NMDeviceOlpcMesh implements + GInitable and GAsyncInitable.

+
+
+

Properties

+
+  "active-channel"           guint                 : Read
+  "companion"                NMDeviceWifi*         : Read
+  "hw-address"               gchar*                : Read
+
+
+
+

Description

+

+

+
+
+

Details

+
+

NMDeviceOlpcMesh

+
typedef struct _NMDeviceOlpcMesh NMDeviceOlpcMesh;
+

+

+
+
+
+

NMDeviceOlpcMeshClass

+
typedef struct {
+	NMDeviceClass parent;
+
+	/* Padding for future expansion */
+	void (*_reserved1) (void);
+	void (*_reserved2) (void);
+	void (*_reserved3) (void);
+	void (*_reserved4) (void);
+	void (*_reserved5) (void);
+	void (*_reserved6) (void);
+} NMDeviceOlpcMeshClass;
+
+

+

+
+
+
+

enum NMDeviceOlpcMeshError

+
typedef enum {
+	NM_DEVICE_OLPC_MESH_ERROR_UNKNOWN = 0,                  /*< nick=UnknownError >*/
+	NM_DEVICE_OLPC_MESH_ERROR_NOT_OLPC_MESH_CONNECTION,     /*< nick=NotOlpcMeshConnection >*/
+	NM_DEVICE_OLPC_MESH_ERROR_INVALID_OLPC_MESH_CONNECTION, /*< nick=InvalidOlpcMeshConnection >*/
+} NMDeviceOlpcMeshError;
+
+
++ + + + + + + + + + + + + + +

NM_DEVICE_OLPC_MESH_ERROR_UNKNOWN

unknown or unclassified error +

NM_DEVICE_OLPC_MESH_ERROR_NOT_OLPC_MESH_CONNECTION

the connection was not of Olpc Mesh type +

NM_DEVICE_OLPC_MESH_ERROR_INVALID_OLPC_MESH_CONNECTION

the Olpc Mesh connection was invalid +
+
+
+
+

NM_DEVICE_OLPC_MESH_ACTIVE_CHANNEL

+
#define NM_DEVICE_OLPC_MESH_ACTIVE_CHANNEL "active-channel"
+
+

+

+
+
+
+

NM_DEVICE_OLPC_MESH_COMPANION

+
#define NM_DEVICE_OLPC_MESH_COMPANION      "companion"
+
+

+

+
+
+
+

NM_DEVICE_OLPC_MESH_ERROR

+
#define NM_DEVICE_OLPC_MESH_ERROR nm_device_olpc_mesh_error_quark ()
+
+

+

+
+
+
+

NM_DEVICE_OLPC_MESH_HW_ADDRESS

+
#define NM_DEVICE_OLPC_MESH_HW_ADDRESS     "hw-address"
+
+

+

+
+
+
+

nm_device_olpc_mesh_error_quark ()

+
GQuark              nm_device_olpc_mesh_error_quark     (void);
+

+Registers an error quark for NMDeviceOlpcMesh if necessary. +

+
++ + + + +

Returns :

the error quark used for NMDeviceOlpcMesh errors.
+
+
+
+

nm_device_olpc_mesh_get_active_channel ()

+
guint32             nm_device_olpc_mesh_get_active_channel
+                                                        (NMDeviceOlpcMesh *device);
+

+Returns the active channel of the NMDeviceOlpcMesh device. +

+
++ + + + + + + + + + +

device :

a NMDeviceOlpcMesh +

Returns :

active channel of the device
+
+
+
+

nm_device_olpc_mesh_get_companion ()

+
NMDeviceWifi *      nm_device_olpc_mesh_get_companion   (NMDeviceOlpcMesh *device);
+

+Gets the companion device of the NMDeviceOlpcMesh. +

+
++ + + + + + + + + + +

device :

a NMDeviceOlpcMesh +

Returns :

the companion of the device of NULL. [transfer none] +
+
+
+
+

nm_device_olpc_mesh_get_hw_address ()

+
const char *        nm_device_olpc_mesh_get_hw_address  (NMDeviceOlpcMesh *device);
+

+Gets the hardware (MAC) address of the NMDeviceOlpcMesh +

+
++ + + + + + + + + + +

device :

a NMDeviceOlpcMesh +

Returns :

the hardware address. This is the internal string used by the +device, and must not be modified.
+
+
+
+

nm_device_olpc_mesh_new ()

+
GObject *           nm_device_olpc_mesh_new             (DBusGConnection *connection,
+                                                         const char *path);
+

+Creates a new NMDeviceOlpcMesh. +

+
++ + + + + + + + + + + + + + +

connection :

the DBusGConnection +

path :

the DBus object path of the device

Returns :

a new OlpcMesh device. [transfer full] +
+
+
+
+

Property Details

+
+

The "active-channel" property

+
  "active-channel"           guint                 : Read
+

+The device's active channel. +

+

Default value: 0

+
+
+
+

The "companion" property

+
  "companion"                NMDeviceWifi*         : Read
+

+The companion device. +

+
+
+
+

The "hw-address" property

+
  "hw-address"               gchar*                : Read
+

+The hardware (MAC) address of the device. +

+

Default value: NULL

+
+
+
+ + + \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceVlan.html b/docs/libnm-glib/html/NMDeviceVlan.html new file mode 100644 index 00000000..4e7f1a70 --- /dev/null +++ b/docs/libnm-glib/html/NMDeviceVlan.html @@ -0,0 +1,333 @@ + + + + +NMDeviceVlan + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NMDeviceVlan

+

NMDeviceVlan

+
+ +
+

Object Hierarchy

+
+  GObject
+   +----NMObject
+         +----NMDevice
+               +----NMDeviceVlan
+
+
+
+

Implemented Interfaces

+

+NMDeviceVlan implements + GInitable and GAsyncInitable.

+
+
+

Properties

+
+  "carrier"                  gboolean              : Read
+  "hw-address"               gchar*                : Read
+  "vlan-id"                  guint                 : Read
+
+
+
+

Description

+

+

+
+
+

Details

+
+

NMDeviceVlan

+
typedef struct _NMDeviceVlan NMDeviceVlan;
+

+

+
+
+
+

NMDeviceVlanClass

+
typedef struct {
+	NMDeviceClass parent;
+
+	/* Padding for future expansion */
+	void (*_reserved1) (void);
+	void (*_reserved2) (void);
+	void (*_reserved3) (void);
+	void (*_reserved4) (void);
+	void (*_reserved5) (void);
+	void (*_reserved6) (void);
+} NMDeviceVlanClass;
+
+

+

+
+
+
+

enum NMDeviceVlanError

+
typedef enum {
+	NM_DEVICE_VLAN_ERROR_UNKNOWN = 0,             /*< nick=UnknownError >*/
+	NM_DEVICE_VLAN_ERROR_NOT_VLAN_CONNECTION,     /*< nick=NotVlanConnection >*/
+	NM_DEVICE_VLAN_ERROR_INVALID_VLAN_CONNECTION, /*< nick=InvalidVlanConnection >*/
+	NM_DEVICE_VLAN_ERROR_ID_MISMATCH,             /*< nick=IdMismatch >*/
+	NM_DEVICE_VLAN_ERROR_INTERFACE_MISMATCH,      /*< nick=InterfaceMismatch >*/
+} NMDeviceVlanError;
+
+
++ + + + + + + + + + + + + + + + + + + + + + +

NM_DEVICE_VLAN_ERROR_UNKNOWN

unknown or unclassified error +

NM_DEVICE_VLAN_ERROR_NOT_VLAN_CONNECTION

the connection was not of VLAN type +

NM_DEVICE_VLAN_ERROR_INVALID_VLAN_CONNECTION

the VLAN connection was invalid +

NM_DEVICE_VLAN_ERROR_ID_MISMATCH

the VLAN identifiers of the connection and the device mismatched +

NM_DEVICE_VLAN_ERROR_INTERFACE_MISMATCH

the interfaces of the connection and the device mismatched +
+
+
+
+

NM_DEVICE_VLAN_CARRIER

+
#define NM_DEVICE_VLAN_CARRIER     "carrier"
+
+

+

+
+
+
+

NM_DEVICE_VLAN_ERROR

+
#define NM_DEVICE_VLAN_ERROR nm_device_vlan_error_quark ()
+
+

+

+
+
+
+

NM_DEVICE_VLAN_HW_ADDRESS

+
#define NM_DEVICE_VLAN_HW_ADDRESS  "hw-address"
+
+

+

+
+
+
+

NM_DEVICE_VLAN_VLAN_ID

+
#define NM_DEVICE_VLAN_VLAN_ID     "vlan-id"
+
+

+

+
+
+
+

nm_device_vlan_error_quark ()

+
GQuark              nm_device_vlan_error_quark          (void);
+

+Registers an error quark for NMDeviceVlan if necessary. +

+
++ + + + +

Returns :

the error quark used for NMDeviceVlan errors.
+
+
+
+

nm_device_vlan_get_carrier ()

+
gboolean            nm_device_vlan_get_carrier          (NMDeviceVlan *device);
+

+Whether the device has carrier. +

+
++ + + + + + + + + + +

device :

a NMDeviceVlan +

Returns :

+TRUE if the device has carrier
+
+
+
+

nm_device_vlan_get_hw_address ()

+
const char *        nm_device_vlan_get_hw_address       (NMDeviceVlan *device);
+

+Gets the hardware (MAC) address of the NMDeviceVlan +

+
++ + + + + + + + + + +

device :

a NMDeviceVlan +

Returns :

the hardware address. This is the internal string used by the +device, and must not be modified.
+
+
+
+

nm_device_vlan_get_vlan_id ()

+
guint               nm_device_vlan_get_vlan_id          (NMDeviceVlan *device);
+
++ + + + + + + + + + +

device :

a NMDeviceVlan +

Returns :

the device's VLAN ID
+
+
+
+

nm_device_vlan_new ()

+
GObject *           nm_device_vlan_new                  (DBusGConnection *connection,
+                                                         const char *path);
+

+Creates a new NMDeviceVlan. +

+
++ + + + + + + + + + + + + + +

connection :

the DBusGConnection +

path :

the DBus object path of the device

Returns :

a new device. [transfer full] +
+
+
+
+

Property Details

+
+

The "carrier" property

+
  "carrier"                  gboolean              : Read
+

+Whether the device has carrier. +

+

Default value: FALSE

+
+
+
+

The "hw-address" property

+
  "hw-address"               gchar*                : Read
+

+The hardware (MAC) address of the device. +

+

Default value: NULL

+
+
+
+

The "vlan-id" property

+
  "vlan-id"                  guint                 : Read
+

+The device's VLAN ID. +

+

Allowed values: <= 4095

+

Default value: 0

+
+
+
+ + + \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceWifi.html b/docs/libnm-glib/html/NMDeviceWifi.html index f08d0b79..e41712f3 100644 --- a/docs/libnm-glib/html/NMDeviceWifi.html +++ b/docs/libnm-glib/html/NMDeviceWifi.html @@ -47,12 +47,15 @@

Synopsis

                    NMDeviceWifi;
                     NMDeviceWifiClass;
+enum                NMDeviceWifiError;
 #define             NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT
 #define             NM_DEVICE_WIFI_BITRATE
 #define             NM_DEVICE_WIFI_CAPABILITIES
+#define             NM_DEVICE_WIFI_ERROR
 #define             NM_DEVICE_WIFI_HW_ADDRESS
 #define             NM_DEVICE_WIFI_MODE
 #define             NM_DEVICE_WIFI_PERMANENT_HW_ADDRESS
+GQuark              nm_device_wifi_error_quark          (void);
 NMAccessPoint *     nm_device_wifi_get_access_point_by_path
                                                         (NMDeviceWifi *device,
                                                          const char *path);
@@ -140,6 +143,62 @@ NMDeviceWifi implements
 

+

enum NMDeviceWifiError

+
typedef enum {
+	NM_DEVICE_WIFI_ERROR_UNKNOWN = 0,             /*< nick=UnknownError >*/
+	NM_DEVICE_WIFI_ERROR_NOT_WIFI_CONNECTION,     /*< nick=NotWifiConnection >*/
+	NM_DEVICE_WIFI_ERROR_INVALID_WIFI_CONNECTION, /*< nick=InvalidWifiConnection >*/
+	NM_DEVICE_WIFI_ERROR_INVALID_DEVICE_MAC,      /*< nick=InvalidDeviceMac >*/
+	NM_DEVICE_WIFI_ERROR_MAC_MISMATCH,            /*< nick=MacMismatch >*/
+	NM_DEVICE_WIFI_ERROR_MISSING_DEVICE_WPA_CAPS, /*< nick=MissingDeviceWpaCaps >*/
+	NM_DEVICE_WIFI_ERROR_MISSING_DEVICE_RSN_CAPS, /*< nick=MissingDeviceRsnCaps >*/
+} NMDeviceWifiError;
+
+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

NM_DEVICE_WIFI_ERROR_UNKNOWN

unknown or unclassified error +

NM_DEVICE_WIFI_ERROR_NOT_WIFI_CONNECTION

the connection was not of Wi-Fi type +

NM_DEVICE_WIFI_ERROR_INVALID_WIFI_CONNECTION

the Wi-Fi connection was invalid +

NM_DEVICE_WIFI_ERROR_INVALID_DEVICE_MAC

the device's MAC was invalid +

NM_DEVICE_WIFI_ERROR_MAC_MISMATCH

the MACs of the connection and the device mismatched +

NM_DEVICE_WIFI_ERROR_MISSING_DEVICE_WPA_CAPS

the device missed WPA capabilities +required by the connection +

NM_DEVICE_WIFI_ERROR_MISSING_DEVICE_RSN_CAPS

the device missed RSN capabilities +required by the connection +
+
+
+

NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT

#define NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT "active-access-point"
 
@@ -164,6 +223,14 @@ NMDeviceWifi implements

+

NM_DEVICE_WIFI_ERROR

+
#define NM_DEVICE_WIFI_ERROR nm_device_wifi_error_quark ()
+
+

+

+
+
+

NM_DEVICE_WIFI_HW_ADDRESS

#define NM_DEVICE_WIFI_HW_ADDRESS          "hw-address"
 
@@ -188,6 +255,21 @@ NMDeviceWifi implements

+

nm_device_wifi_error_quark ()

+
GQuark              nm_device_wifi_error_quark          (void);
+

+Registers an error quark for NMDeviceWifi if necessary. +

+
++ + + + +

Returns :

the error quark used for NMDeviceWifi errors.
+
+
+

nm_device_wifi_get_access_point_by_path ()

NMAccessPoint *     nm_device_wifi_get_access_point_by_path
                                                         (NMDeviceWifi *device,
diff --git a/docs/libnm-glib/html/NMDeviceWimax.html b/docs/libnm-glib/html/NMDeviceWimax.html
index 6daa921a..598f77b5 100644
--- a/docs/libnm-glib/html/NMDeviceWimax.html
+++ b/docs/libnm-glib/html/NMDeviceWimax.html
@@ -7,7 +7,7 @@
 
 
 
-
+
 
 
 
@@ -18,7 +18,7 @@
 Up
 Home
 libnm-glib Reference Manual
-Next
+Next
 
 
 Top
@@ -47,13 +47,16 @@
 

Synopsis

                    NMDeviceWimax;
                     NMDeviceWimaxClass;
+enum                NMDeviceWimaxError;
 #define             NM_DEVICE_WIMAX_ACTIVE_NSP
 #define             NM_DEVICE_WIMAX_BSID
 #define             NM_DEVICE_WIMAX_CENTER_FREQUENCY
 #define             NM_DEVICE_WIMAX_CINR
+#define             NM_DEVICE_WIMAX_ERROR
 #define             NM_DEVICE_WIMAX_HW_ADDRESS
 #define             NM_DEVICE_WIMAX_RSSI
 #define             NM_DEVICE_WIMAX_TX_POWER
+GQuark              nm_device_wimax_error_quark         (void);
 NMWimaxNsp *        nm_device_wimax_get_active_nsp      (NMDeviceWimax *wimax);
 const char *        nm_device_wimax_get_bsid            (NMDeviceWimax *self);
 guint               nm_device_wimax_get_center_frequency
@@ -132,6 +135,48 @@ NMDeviceWimax implements
 

+

enum NMDeviceWimaxError

+
typedef enum {
+	NM_DEVICE_WIMAX_ERROR_UNKNOWN = 0,              /*< nick=UnknownError >*/
+	NM_DEVICE_WIMAX_ERROR_NOT_WIMAX_CONNECTION,     /*< nick=NotWimaxConnection >*/
+	NM_DEVICE_WIMAX_ERROR_INVALID_WIMAX_CONNECTION, /*< nick=InvalidWimaxConnection >*/
+	NM_DEVICE_WIMAX_ERROR_INVALID_DEVICE_MAC,       /*< nick=InvalidDeviceMac >*/
+	NM_DEVICE_WIMAX_ERROR_MAC_MISMATCH,             /*< nick=MacMismatch >*/
+} NMDeviceWimaxError;
+
+
++ + + + + + + + + + + + + + + + + + + + + + +

NM_DEVICE_WIMAX_ERROR_UNKNOWN

unknown or unclassified error +

NM_DEVICE_WIMAX_ERROR_NOT_WIMAX_CONNECTION

the connection was not of WiMax type +

NM_DEVICE_WIMAX_ERROR_INVALID_WIMAX_CONNECTION

the WiMax connection was invalid +

NM_DEVICE_WIMAX_ERROR_INVALID_DEVICE_MAC

the device's MAC was invalid +

NM_DEVICE_WIMAX_ERROR_MAC_MISMATCH

the MACs of the connection and the device mismatched +
+
+
+

NM_DEVICE_WIMAX_ACTIVE_NSP

#define NM_DEVICE_WIMAX_ACTIVE_NSP       "active-nsp"
 
@@ -164,6 +209,14 @@ NMDeviceWimax implements

+

NM_DEVICE_WIMAX_ERROR

+
#define NM_DEVICE_WIMAX_ERROR nm_device_wimax_error_quark ()
+
+

+

+
+
+

NM_DEVICE_WIMAX_HW_ADDRESS

#define NM_DEVICE_WIMAX_HW_ADDRESS       "hw-address"
 
@@ -188,6 +241,21 @@ NMDeviceWimax implements

+

nm_device_wimax_error_quark ()

+
GQuark              nm_device_wimax_error_quark         (void);
+

+Registers an error quark for NMDeviceWimax if necessary. +

+
++ + + + +

Returns :

the error quark used for NMDeviceWimax errors.
+
+
+

nm_device_wimax_get_active_nsp ()

NMWimaxNsp *        nm_device_wimax_get_active_nsp      (NMDeviceWimax *wimax);

diff --git a/docs/libnm-glib/html/NMObject.html b/docs/libnm-glib/html/NMObject.html index 24bb4276..ea763de7 100644 --- a/docs/libnm-glib/html/NMObject.html +++ b/docs/libnm-glib/html/NMObject.html @@ -30,6 +30,8 @@ Implemented Interfaces  |  Properties +  |  + Signals

@@ -45,8 +47,11 @@

Synopsis

                    NMObject;
                     NMObjectClass;
+enum                NMObjectError;
 #define             NM_OBJECT_DBUS_CONNECTION
 #define             NM_OBJECT_DBUS_PATH
+#define             NM_OBJECT_ERROR
+GQuark              nm_object_error_quark               (void);
 DBusGConnection *   nm_object_get_connection            (NMObject *object);
 const char *        nm_object_get_path                  (NMObject *object);
 
@@ -81,6 +86,12 @@ NMObject implements
+

Signals

+
+  "object-creation-failed"                         : Run First
+
+
+

Description

@@ -99,6 +110,15 @@ NMObject implements
typedef struct {
 	GObjectClass parent;
 
+	/* Signals */
+	/* The "object-creation-failed" signal is PRIVATE for libnm-glib and
+	 * is not meant for any external usage.  It indicates that an error
+	 * occured during creation of an object.
+	 */
+	void (*object_creation_failed) (NMObject *master_object,
+	                                GError *error,
+	                                char *failed_path);
+
 	/* Padding for future expansion */
 	void (*_reserved1) (void);
 	void (*_reserved2) (void);
@@ -113,6 +133,33 @@ NMObject implements
 

+

enum NMObjectError

+
typedef enum {
+	NM_OBJECT_ERROR_UNKNOWN = 0,
+	NM_OBJECT_ERROR_OBJECT_CREATION_FAILURE,
+} NMObjectError;
+
+

+Describes errors that may result from operations involving a NMObject. +

+
++ + + + + + + + + + +

NM_OBJECT_ERROR_UNKNOWN

unknown or unclassified error +

NM_OBJECT_ERROR_OBJECT_CREATION_FAILURE

an error ocured while creating an NMObject +
+
+
+

NM_OBJECT_DBUS_CONNECTION

#define NM_OBJECT_DBUS_CONNECTION "dbus-connection"
 
@@ -129,6 +176,29 @@ NMObject implements

+

NM_OBJECT_ERROR

+
#define NM_OBJECT_ERROR nm_object_error_quark ()
+
+

+

+
+
+
+

nm_object_error_quark ()

+
GQuark              nm_object_error_quark               (void);
+

+Registers an error quark for NMObject if necessary. +

+
++ + + + +

Returns :

the error quark used for NMObject errors.
+
+
+

nm_object_get_connection ()

DBusGConnection *   nm_object_get_connection            (NMObject *object);

@@ -189,6 +259,45 @@ device, and must not be modified.

Default value: NULL

+
+

Signal Details

+
+

The "object-creation-failed" signal

+
void                user_function                      (NMObject *master_object,
+                                                        gpointer  error,
+                                                        gpointer  failed_path,
+                                                        gpointer  user_data)          : Run First
+

+Indicates that an error occured while creating an NMObject object +during property handling of master_object. +

+

+Note: Be aware that the signal is private for libnm-glib's internal + use. +

+
++ + + + + + + + + + + + + + + + + + +

master_object :

the object that received the signal

error :

the error that occured while creating object

failed_path :

object path of the failed object

user_data :

user data set when the signal handler was connected.
+
+

@@ -154,7 +174,27 @@ NMRemoteConnection implements GError *error, gpointer user_data);

+Called when NetworkManager has deleted a connection as a result of +nm_remote_connection_delete().

+
++ + + + + + + + + + + + + + +

connection :

the connection to be deleted

error :

on failure, a descriptive error

user_data :

user data passed to nm_remote_connection_delete() +

@@ -164,7 +204,34 @@ NMRemoteConnection implements GError *error, gpointer user_data);

+Called when NetworkManager returns secrets in response to a request for +secrets via nm_remote_connection_get_secrets().

+
++ + + + + + + + + + + + + + + + + + +

connection :

the connection for which secrets were requested

secrets :

on success, a hash table of +hash tables, with each inner hash mapping a setting property to a GValue +containing that property's value. [element-type utf8 GLib.HashTable] +

error :

on failure, a descriptive error

user_data :

user data passed to nm_remote_connection_get_secrets() +

diff --git a/docs/libnm-glib/html/NMSecretAgent.html b/docs/libnm-glib/html/NMSecretAgent.html index f7254c2a..1ad2b84b 100644 --- a/docs/libnm-glib/html/NMSecretAgent.html +++ b/docs/libnm-glib/html/NMSecretAgent.html @@ -63,12 +63,14 @@ enum NM_SECRET_AGENT_AUTO_REGISTER #define NM_SECRET_AGENT_ERROR #define NM_SECRET_AGENT_IDENTIFIER +#define NM_SECRET_AGENT_REGISTERED #define NM_SECRET_AGENT_REGISTRATION_RESULT void nm_secret_agent_delete_secrets (NMSecretAgent *self, NMConnection *connection, NMSecretAgentDeleteSecretsFunc callback, gpointer user_data); GQuark nm_secret_agent_error_quark (void); +gboolean nm_secret_agent_get_registered (NMSecretAgent *self); void nm_secret_agent_get_secrets (NMSecretAgent *self, NMConnection *connection, const char *setting_name, @@ -246,7 +248,8 @@ should be called.
typedef enum {
 	NM_SECRET_AGENT_GET_SECRETS_FLAG_NONE = 0x0,
 	NM_SECRET_AGENT_GET_SECRETS_FLAG_ALLOW_INTERACTION = 0x1,
-	NM_SECRET_AGENT_GET_SECRETS_FLAG_REQUEST_NEW = 0x2
+	NM_SECRET_AGENT_GET_SECRETS_FLAG_REQUEST_NEW = 0x2,
+	NM_SECRET_AGENT_GET_SECRETS_FLAG_USER_REQUESTED = 0x4
 } NMSecretAgentGetSecretsFlags;
 

@@ -277,6 +280,14 @@ existing secrets are invalid or wrong. This flag implies that interaction is allowed. + +

NM_SECRET_AGENT_GET_SECRETS_FLAG_USER_REQUESTED

+set if the request was +initiated by user-requested action via the D-Bus interface, as opposed to +automatically initiated by NetworkManager in response to (for example) scan +results or carrier changes. + +
@@ -299,7 +310,7 @@ To easily create the hash table to return the WiFi PSK, you could do something like this:

-

Example 1. Creating a secrets hash

+

Example 1. Creating a secrets hash

@@ -437,6 +448,14 @@ should be called.
+

NM_SECRET_AGENT_REGISTERED

+
#define NM_SECRET_AGENT_REGISTERED          "registered"
+
+

+

+
+
+

NM_SECRET_AGENT_REGISTRATION_RESULT

#define NM_SECRET_AGENT_REGISTRATION_RESULT "registration-result"
 
@@ -492,6 +511,25 @@ VFunc: delete_secrets

+

nm_secret_agent_get_registered ()

+
gboolean            nm_secret_agent_get_registered      (NMSecretAgent *self);
+
++ + + + + + + + + + +

self :

a NMSecretAgent +

Returns :

a TRUE if the agent is registered, FALSE if it is not.
+
+
+

nm_secret_agent_get_secrets ()

void                nm_secret_agent_get_secrets         (NMSecretAgent *self,
                                                          NMConnection *connection,
diff --git a/docs/libnm-glib/html/NMWimaxNsp.html b/docs/libnm-glib/html/NMWimaxNsp.html
index 68a80693..d6782d7f 100644
--- a/docs/libnm-glib/html/NMWimaxNsp.html
+++ b/docs/libnm-glib/html/NMWimaxNsp.html
@@ -6,7 +6,7 @@
 
 
 
-
+
 
 
 
@@ -14,7 +14,7 @@
 
 
-
+
diff --git a/docs/libnm-glib/html/api-index-full.html b/docs/libnm-glib/html/api-index-full.html
index e07f804b..13330c48 100644
--- a/docs/libnm-glib/html/api-index-full.html
+++ b/docs/libnm-glib/html/api-index-full.html
@@ -27,8 +27,6 @@
                       | 
                    D
                       | 
-                   G
-                      | 
                    I
                       | 
                    O
@@ -525,299 +523,271 @@
 

D

-DBUS_GLIB_CLIENT_WRAPPERS_org_freedesktop_NetworkManagerSettings_Connection, macro in nm-exported-connection-bindings -
-
-
-DBUS_GLIB_CLIENT_WRAPPERS_org_freedesktop_NetworkManagerSettings_Connection_Secrets, macro in nm-exported-connection-bindings -
-
-
-DBUS_GLIB_CLIENT_WRAPPERS_org_freedesktop_NetworkManagerSettings_System, macro in nm-settings-system-bindings -
-
-
-DBUS_GLIB_CLIENT_WRAPPERS_org_freedesktop_NetworkManager_Device_Infiniband, macro in nm-device-infiniband-bindings -
-
-
-dbus_glib_marshal_nm_exported_connection_BOOLEAN__POINTER_POINTER, function in nm-exported-connection-glue -
-
-
-dbus_glib_marshal_nm_exported_connection_NONE__BOXED_POINTER, macro in nm-exported-connection-glue -
-
-
-dbus_glib_marshal_nm_exported_connection_NONE__POINTER, macro in nm-exported-connection-glue -
-
-
-dbus_glib_marshal_nm_exported_connection_NONE__STRING_BOXED_BOOLEAN_POINTER, macro in nm-exported-connection-glue +NMDevice, struct in NMDevice
-dbus_glib_marshal_nm_exported_connection_VOID__BOXED_POINTER, function in nm-exported-connection-glue +NMDevice::state-changed, object signal in NMDevice
-dbus_glib_marshal_nm_exported_connection_VOID__POINTER, macro in nm-exported-connection-glue +NMDevice:active-connection, object property in NMDevice
-dbus_glib_marshal_nm_exported_connection_VOID__STRING_BOXED_BOOLEAN_POINTER, function in nm-exported-connection-glue +NMDevice:autoconnect, object property in NMDevice
-dbus_glib_marshal_nm_secret_agent_NONE__BOXED_BOXED_POINTER, macro in nm-secret-agent-glue +NMDevice:capabilities, object property in NMDevice
-dbus_glib_marshal_nm_secret_agent_NONE__BOXED_BOXED_STRING_BOXED_UINT_POINTER, macro in nm-secret-agent-glue +NMDevice:device-type, object property in NMDevice
-dbus_glib_marshal_nm_secret_agent_NONE__BOXED_STRING_POINTER, macro in nm-secret-agent-glue +NMDevice:dhcp4-config, object property in NMDevice
-dbus_glib_marshal_nm_secret_agent_VOID__BOXED_BOXED_POINTER, function in nm-secret-agent-glue +NMDevice:dhcp6-config, object property in NMDevice
-dbus_glib_marshal_nm_secret_agent_VOID__BOXED_BOXED_STRING_BOXED_UINT_POINTER, function in nm-secret-agent-glue +NMDevice:driver, object property in NMDevice
-dbus_glib_marshal_nm_secret_agent_VOID__BOXED_STRING_POINTER, function in nm-secret-agent-glue +NMDevice:driver-version, object property in NMDevice
-dbus_glib_nm_exported_connection_object_info, variable in nm-exported-connection-glue +NMDevice:firmware-missing, object property in NMDevice
-dbus_glib_nm_secret_agent_object_info, variable in nm-secret-agent-glue +NMDevice:firmware-version, object property in NMDevice
-dbus_g_proxy_begin_call, function in nm-settings-system-bindings +NMDevice:interface, object property in NMDevice
-NMDevice, struct in NMDevice +NMDevice:ip-interface, object property in NMDevice
-NMDevice::state-changed, object signal in NMDevice +NMDevice:ip4-config, object property in NMDevice
-NMDevice:active-connection, object property in NMDevice +NMDevice:ip6-config, object property in NMDevice
-NMDevice:capabilities, object property in NMDevice +NMDevice:managed, object property in NMDevice
-NMDevice:device-type, object property in NMDevice +NMDevice:product, object property in NMDevice
-NMDevice:dhcp4-config, object property in NMDevice +NMDevice:state, object property in NMDevice
-NMDevice:dhcp6-config, object property in NMDevice +NMDevice:state-reason, object property in NMDevice
-NMDevice:driver, object property in NMDevice +NMDevice:udi, object property in NMDevice
-NMDevice:firmware-missing, object property in NMDevice +NMDevice:vendor, object property in NMDevice
-NMDevice:interface, object property in NMDevice +NMDeviceAdsl, struct in NMDeviceAdsl
-NMDevice:ip-interface, object property in NMDevice +NMDeviceAdslClass, struct in NMDeviceAdsl
-NMDevice:ip4-config, object property in NMDevice +NMDeviceAdslError, enum in NMDeviceAdsl
-NMDevice:ip6-config, object property in NMDevice +NMDeviceBond, struct in NMDeviceBond
-NMDevice:managed, object property in NMDevice +NMDeviceBond:carrier, object property in NMDeviceBond
-NMDevice:product, object property in NMDevice +NMDeviceBond:hw-address, object property in NMDeviceBond
-NMDevice:state, object property in NMDevice +NMDeviceBondClass, struct in NMDeviceBond
-NMDevice:state-reason, object property in NMDevice +NMDeviceBondError, enum in NMDeviceBond
-NMDevice:udi, object property in NMDevice +NMDeviceBt, struct in NMDeviceBt
-NMDevice:vendor, object property in NMDevice +NMDeviceBt:bt-capabilities, object property in NMDeviceBt
-NMDeviceBond, struct in NMDeviceBond +NMDeviceBt:hw-address, object property in NMDeviceBt
-NMDeviceBond:carrier, object property in NMDeviceBond +NMDeviceBt:name, object property in NMDeviceBt
-NMDeviceBond:hw-address, object property in NMDeviceBond +NMDeviceBtClass, struct in NMDeviceBt
-NMDeviceBondClass, struct in NMDeviceBond +NMDeviceBtError, enum in NMDeviceBt
-NMDeviceBt, struct in NMDeviceBt +NMDeviceClass, struct in NMDevice
-NMDeviceBt:bt-capabilities, object property in NMDeviceBt +NMDeviceDeactivateFn, user_function in NMDevice
-NMDeviceBt:hw-address, object property in NMDeviceBt +NMDeviceEthernet, struct in NMDeviceEthernet
-NMDeviceBt:name, object property in NMDeviceBt +NMDeviceEthernet:carrier, object property in NMDeviceEthernet
-NMDeviceBtClass, struct in NMDeviceBt +NMDeviceEthernet:hw-address, object property in NMDeviceEthernet
-NMDeviceClass, struct in NMDevice +NMDeviceEthernet:perm-hw-address, object property in NMDeviceEthernet
-NMDeviceDeactivateFn, user_function in NMDevice +NMDeviceEthernet:speed, object property in NMDeviceEthernet
-NMDeviceEthernet, struct in NMDeviceEthernet +NMDeviceEthernetClass, struct in NMDeviceEthernet
-NMDeviceEthernet:carrier, object property in NMDeviceEthernet +NMDeviceEthernetError, enum in NMDeviceEthernet
-NMDeviceEthernet:hw-address, object property in NMDeviceEthernet +NMDeviceInfiniband, struct in NMDeviceInfiniband
-NMDeviceEthernet:perm-hw-address, object property in NMDeviceEthernet +NMDeviceInfiniband:carrier, object property in NMDeviceInfiniband
-NMDeviceEthernet:speed, object property in NMDeviceEthernet +NMDeviceInfiniband:hw-address, object property in NMDeviceInfiniband
-NMDeviceEthernetClass, struct in NMDeviceEthernet +NMDeviceInfinibandClass, struct in NMDeviceInfiniband
-NMDeviceInfiniband, struct in NMDeviceInfiniband +NMDeviceInfinibandError, enum in NMDeviceInfiniband
-NMDeviceInfiniband:carrier, object property in NMDeviceInfiniband +NMDeviceModem, struct in NMDeviceModem
-NMDeviceInfiniband:hw-address, object property in NMDeviceInfiniband +NMDeviceModem:current-capabilities, object property in NMDeviceModem
-NMDeviceInfinibandClass, struct in NMDeviceInfiniband +NMDeviceModem:modem-capabilities, object property in NMDeviceModem
-NMDeviceModem, struct in NMDeviceModem +NMDeviceModemClass, struct in NMDeviceModem
-NMDeviceModem:current-capabilities, object property in NMDeviceModem +NMDeviceModemError, enum in NMDeviceModem
-NMDeviceModem:modem-capabilities, object property in NMDeviceModem +NMDeviceOlpcMesh, struct in NMDeviceOlpcMesh
-NMDeviceModemClass, struct in NMDeviceModem +NMDeviceOlpcMesh:active-channel, object property in NMDeviceOlpcMesh
-NMDeviceOlpcMesh, struct in NMDeviceOlpcMesh +NMDeviceOlpcMesh:companion, object property in NMDeviceOlpcMesh
-NMDeviceOlpcMesh:active-channel, object property in NMDeviceOlpcMesh +NMDeviceOlpcMesh:hw-address, object property in NMDeviceOlpcMesh
-NMDeviceOlpcMesh:companion, object property in NMDeviceOlpcMesh +NMDeviceOlpcMeshClass, struct in NMDeviceOlpcMesh
-NMDeviceOlpcMesh:hw-address, object property in NMDeviceOlpcMesh +NMDeviceOlpcMeshError, enum in NMDeviceOlpcMesh
-NMDeviceOlpcMeshClass, struct in NMDeviceOlpcMesh +NMDeviceVlan, struct in NMDeviceVlan
-NMDeviceVlan, struct in NMDeviceVlan +NMDeviceVlan:carrier, object property in NMDeviceVlan
-NMDeviceVlan:carrier, object property in NMDeviceVlan +NMDeviceVlan:hw-address, object property in NMDeviceVlan
-NMDeviceVlan:hw-address, object property in NMDeviceVlan +NMDeviceVlan:vlan-id, object property in NMDeviceVlan
-NMDeviceVlan:vlan-id, object property in NMDeviceVlan +NMDeviceVlanClass, struct in NMDeviceVlan
-NMDeviceVlanClass, struct in NMDeviceVlan +NMDeviceVlanError, enum in NMDeviceVlan
@@ -861,6 +831,10 @@ NMDeviceVlanClass, struct in NMDeviceVlan
+NMDeviceWifiError, enum in NMDeviceWifi +
+
+
NMDeviceWimax, struct in NMDeviceWimax
@@ -905,27 +879,63 @@ NMDeviceVlanClass, struct in NMDeviceVlan
+NMDeviceWimaxError, enum in NMDeviceWimax +
+
+
NM_DEVICE_ACTIVE_CONNECTION, macro in NMDevice
-NM_DEVICE_BOND_CARRIER, macro in NMDeviceBond +NM_DEVICE_ADSL_CARRIER, macro in NMDeviceAdsl +
+
+
+NM_DEVICE_ADSL_ERROR, macro in NMDeviceAdsl +
+
+
+nm_device_adsl_error_quark, function in NMDeviceAdsl +
+
+
+nm_device_adsl_get_carrier, function in NMDeviceAdsl
-nm_device_bond_get_carrier, function in NMDeviceBond +nm_device_adsl_new, function in NMDeviceAdsl
-nm_device_bond_get_hw_address, function in NMDeviceBond +NM_DEVICE_AUTOCONNECT, macro in NMDevice
-NM_DEVICE_BOND_HW_ADDRESS, macro in NMDeviceBond +NM_DEVICE_BOND_CARRIER, macro in NMDeviceBond
-nm_device_bond_new, function in NMDeviceBond +NM_DEVICE_BOND_ERROR, macro in NMDeviceBond +
+
+
+nm_device_bond_error_quark, function in NMDeviceBond +
+
+
+nm_device_bond_get_carrier, function in NMDeviceBond +
+
+
+nm_device_bond_get_hw_address, function in NMDeviceBond +
+
+
+NM_DEVICE_BOND_HW_ADDRESS, macro in NMDeviceBond +
+
+
+nm_device_bond_new, function in NMDeviceBond
@@ -933,6 +943,14 @@ nm_device_bond_new, function in NMDeviceBond
+NM_DEVICE_BT_ERROR, macro in NMDeviceBt +
+
+
+nm_device_bt_error_quark, function in NMDeviceBt +
+
+
nm_device_bt_get_capabilities, function in NMDeviceBt
@@ -961,6 +979,10 @@ nm_device_bond_new, function in NMDeviceBond
+nm_device_connection_compatible, function in NMDevice +
+
+
nm_device_connection_valid, function in NMDevice
@@ -985,10 +1007,22 @@ nm_device_bond_new, function in NMDeviceBond
+NM_DEVICE_DRIVER_VERSION, macro in NMDevice +
+
+
NM_DEVICE_ETHERNET_CARRIER, macro in NMDeviceEthernet
+NM_DEVICE_ETHERNET_ERROR, macro in NMDeviceEthernet +
+
+
+nm_device_ethernet_error_quark, function in NMDeviceEthernet +
+
+
nm_device_ethernet_get_carrier, function in NMDeviceEthernet
@@ -1029,10 +1063,18 @@ nm_device_bond_new, function in NMDeviceBond
+NM_DEVICE_FIRMWARE_VERSION, macro in NMDevice +
+
+
nm_device_get_active_connection, function in NMDevice
+nm_device_get_autoconnect, function in NMDevice +
+
+
nm_device_get_capabilities, function in NMDevice
@@ -1053,10 +1095,18 @@ nm_device_bond_new, function in NMDeviceBond
+nm_device_get_driver_version, function in NMDevice +
+
+
nm_device_get_firmware_missing, function in NMDevice
+nm_device_get_firmware_version, function in NMDevice +
+
+
nm_device_get_iface, function in NMDevice
@@ -1097,23 +1147,31 @@ nm_device_bond_new, function in NMDeviceBond
-NM_DEVICE_INFINIBAND_CARRIER, macro in NMDeviceInfiniband +NM_DEVICE_INFINIBAND_CARRIER, macro in NMDeviceInfiniband
-nm_device_infiniband_get_carrier, function in NMDeviceInfiniband +NM_DEVICE_INFINIBAND_ERROR, macro in NMDeviceInfiniband
-nm_device_infiniband_get_hw_address, function in NMDeviceInfiniband +nm_device_infiniband_error_quark, function in NMDeviceInfiniband
-NM_DEVICE_INFINIBAND_HW_ADDRESS, macro in NMDeviceInfiniband +nm_device_infiniband_get_carrier, function in NMDeviceInfiniband
-nm_device_infiniband_new, function in NMDeviceInfiniband +nm_device_infiniband_get_hw_address, function in NMDeviceInfiniband +
+
+
+NM_DEVICE_INFINIBAND_HW_ADDRESS, macro in NMDeviceInfiniband +
+
+
+nm_device_infiniband_new, function in NMDeviceInfiniband
@@ -1141,6 +1199,14 @@ nm_device_infiniband_new, function in NMDeviceInfiniband
+NM_DEVICE_MODEM_ERROR, macro in NMDeviceModem +
+
+
+nm_device_modem_error_quark, function in NMDeviceModem +
+
+
nm_device_modem_get_current_capabilities, function in NMDeviceModem
@@ -1157,31 +1223,39 @@ nm_device_infiniband_new, function in NMDeviceInfiniband
-NM_DEVICE_OLPC_MESH_ACTIVE_CHANNEL, macro in NMDeviceOlpcMesh +NM_DEVICE_OLPC_MESH_ACTIVE_CHANNEL, macro in NMDeviceOlpcMesh +
+
+
+NM_DEVICE_OLPC_MESH_COMPANION, macro in NMDeviceOlpcMesh +
+
+
+NM_DEVICE_OLPC_MESH_ERROR, macro in NMDeviceOlpcMesh
-NM_DEVICE_OLPC_MESH_COMPANION, macro in NMDeviceOlpcMesh +nm_device_olpc_mesh_error_quark, function in NMDeviceOlpcMesh
-nm_device_olpc_mesh_get_active_channel, function in NMDeviceOlpcMesh +nm_device_olpc_mesh_get_active_channel, function in NMDeviceOlpcMesh
-nm_device_olpc_mesh_get_companion, function in NMDeviceOlpcMesh +nm_device_olpc_mesh_get_companion, function in NMDeviceOlpcMesh
-nm_device_olpc_mesh_get_hw_address, function in NMDeviceOlpcMesh +nm_device_olpc_mesh_get_hw_address, function in NMDeviceOlpcMesh
-NM_DEVICE_OLPC_MESH_HW_ADDRESS, macro in NMDeviceOlpcMesh +NM_DEVICE_OLPC_MESH_HW_ADDRESS, macro in NMDeviceOlpcMesh
-nm_device_olpc_mesh_new, function in NMDeviceOlpcMesh +nm_device_olpc_mesh_new, function in NMDeviceOlpcMesh
@@ -1189,6 +1263,10 @@ nm_device_olpc_mesh_new, function in NMDeviceOlpcMesh
+nm_device_set_autoconnect, function in NMDevice +
+
+
NM_DEVICE_STATE, macro in NMDevice
@@ -1205,31 +1283,39 @@ nm_device_olpc_mesh_new, function in NMDeviceOlpcMesh
-NM_DEVICE_VLAN_CARRIER, macro in NMDeviceVlan +NM_DEVICE_VLAN_CARRIER, macro in NMDeviceVlan
-nm_device_vlan_get_carrier, function in NMDeviceVlan +NM_DEVICE_VLAN_ERROR, macro in NMDeviceVlan
-nm_device_vlan_get_hw_address, function in NMDeviceVlan +nm_device_vlan_error_quark, function in NMDeviceVlan
-nm_device_vlan_get_vlan_id, function in NMDeviceVlan +nm_device_vlan_get_carrier, function in NMDeviceVlan
-NM_DEVICE_VLAN_HW_ADDRESS, macro in NMDeviceVlan +nm_device_vlan_get_hw_address, function in NMDeviceVlan
-nm_device_vlan_new, function in NMDeviceVlan +nm_device_vlan_get_vlan_id, function in NMDeviceVlan
-NM_DEVICE_VLAN_VLAN_ID, macro in NMDeviceVlan +NM_DEVICE_VLAN_HW_ADDRESS, macro in NMDeviceVlan +
+
+
+nm_device_vlan_new, function in NMDeviceVlan +
+
+
+NM_DEVICE_VLAN_VLAN_ID, macro in NMDeviceVlan
@@ -1245,6 +1331,14 @@ NM_DEVICE_VLAN_VLAN_ID, macro in NMDeviceVlan
+NM_DEVICE_WIFI_ERROR, macro in NMDeviceWifi +
+
+
+nm_device_wifi_error_quark, function in NMDeviceWifi +
+
+
nm_device_wifi_get_access_points, function in NMDeviceWifi
@@ -1309,6 +1403,14 @@ NM_DEVICE_VLAN_VLAN_ID, macro in NMDeviceVlan
+NM_DEVICE_WIMAX_ERROR, macro in NMDeviceWimax +
+
+
+nm_device_wimax_error_quark, function in NMDeviceWimax +
+
+
nm_device_wimax_get_active_nsp, function in NMDeviceWimax
@@ -1416,83 +1518,6 @@ NM_DEVICE_VLAN_VLAN_ID, macro in NMDeviceVlan NM_DHCP6_CONFIG_OPTIONS, macro in NMDHCP6Config
-

G

-
-g_marshal_value_peek_boolean, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_boxed, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_char, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_double, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_enum, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_flags, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_float, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_int, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_int64, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_long, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_object, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_param, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_pointer, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_string, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_uchar, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_uint, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_uint64, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_ulong, macro in nm-secret-agent-glue -
-
-
-g_marshal_value_peek_variant, macro in nm-secret-agent-glue -
-

I

NMIP4Config, struct in NMIP4Config @@ -1632,127 +1657,47 @@ g_marshal_value_peek_variant, macro in nm-secret-agent-glue
-NMObject:dbus-connection, object property in NMObject -
-
-
-NMObject:dbus-path, object property in NMObject -
-
-
-NMObjectClass, struct in NMObject -
-
-
-NM_OBJECT_DBUS_CONNECTION, macro in NMObject -
-
-
-NM_OBJECT_DBUS_PATH, macro in NMObject -
-
-
-nm_object_get_connection, function in NMObject -
-
-
-nm_object_get_path, function in NMObject -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_delete, function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_delete_async, function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_delete_async_callback, function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_delete_reply, user_function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_get_settings, function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_get_settings_async, function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_get_settings_async_callback, function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_get_settings_reply, user_function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_Secrets_get_secrets, function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_Secrets_get_secrets_async, function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_Secrets_get_secrets_async_callback, function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_Secrets_get_secrets_reply, user_function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_update, function in nm-exported-connection-bindings -
-
-
-org_freedesktop_NetworkManagerSettings_Connection_update_async, function in nm-exported-connection-bindings +NMObject::object-creation-failed, object signal in NMObject
-org_freedesktop_NetworkManagerSettings_Connection_update_async_callback, function in nm-exported-connection-bindings +NMObject:dbus-connection, object property in NMObject
-org_freedesktop_NetworkManagerSettings_Connection_update_reply, user_function in nm-exported-connection-bindings +NMObject:dbus-path, object property in NMObject
-org_freedesktop_NetworkManagerSettings_System_get_permissions, function in nm-settings-system-bindings +NMObjectClass, struct in NMObject
-org_freedesktop_NetworkManagerSettings_System_get_permissions_async, function in nm-settings-system-bindings +NMObjectError, enum in NMObject
-org_freedesktop_NetworkManagerSettings_System_get_permissions_async_callback, function in nm-settings-system-bindings +NM_OBJECT_DBUS_CONNECTION, macro in NMObject
-org_freedesktop_NetworkManagerSettings_System_get_permissions_reply, user_function in nm-settings-system-bindings +NM_OBJECT_DBUS_PATH, macro in NMObject
-org_freedesktop_NetworkManagerSettings_System_save_hostname, function in nm-settings-system-bindings +NM_OBJECT_ERROR, macro in NMObject
-org_freedesktop_NetworkManagerSettings_System_save_hostname_async, function in nm-settings-system-bindings +nm_object_error_quark, function in NMObject
-org_freedesktop_NetworkManagerSettings_System_save_hostname_async_callback, function in nm-settings-system-bindings +nm_object_get_connection, function in NMObject
-org_freedesktop_NetworkManagerSettings_System_save_hostname_reply, user_function in nm-settings-system-bindings +nm_object_get_path, function in NMObject

R

@@ -1986,6 +1931,10 @@ org_freedesktop_NetworkManagerSettings_System_save_hostname_reply, user_function
+nm_secret_agent_get_registered, function in NMSecretAgent +
+
+
nm_secret_agent_get_secrets, function in NMSecretAgent
@@ -1998,6 +1947,10 @@ org_freedesktop_NetworkManagerSettings_System_save_hostname_reply, user_function
+NM_SECRET_AGENT_REGISTERED, macro in NMSecretAgent +
+
+
NM_SECRET_AGENT_REGISTRATION_RESULT, macro in NMSecretAgent
@@ -2103,10 +2056,18 @@ org_freedesktop_NetworkManagerSettings_System_save_hostname_reply, user_function
+nm_vpn_plugin_set_config, function in NMVPNPlugin +
+
+
nm_vpn_plugin_set_ip4_config, function in NMVPNPlugin
+nm_vpn_plugin_set_ip6_config, function in NMVPNPlugin +
+
+
nm_vpn_plugin_set_login_banner, function in NMVPNPlugin
diff --git a/docs/libnm-glib/html/ch02.html b/docs/libnm-glib/html/ch02.html index 72bb7148..4ae3cc09 100644 --- a/docs/libnm-glib/html/ch02.html +++ b/docs/libnm-glib/html/ch02.html @@ -21,7 +21,7 @@

-libnm-glib API Reference

+libnm-glib API Reference
NMClient @@ -48,6 +48,18 @@ NMDeviceWimax
+NMDeviceBond +
+
+NMDeviceInfiniband +
+
+NMDeviceVlan +
+
+NMDeviceOlpcMesh +
+
NMWimaxNsp
diff --git a/docs/libnm-glib/html/index.html b/docs/libnm-glib/html/index.html index e81d55c8..86ef3641 100644 --- a/docs/libnm-glib/html/index.html +++ b/docs/libnm-glib/html/index.html @@ -29,7 +29,7 @@

-

+

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later @@ -89,6 +89,18 @@ NMDeviceWimax

+NMDeviceBond +
+
+NMDeviceInfiniband +
+
+NMDeviceVlan +
+
+NMDeviceOlpcMesh +
+
NMWimaxNsp
diff --git a/docs/libnm-glib/html/index.sgml b/docs/libnm-glib/html/index.sgml index 5f5404f7..2251b67f 100644 --- a/docs/libnm-glib/html/index.sgml +++ b/docs/libnm-glib/html/index.sgml @@ -113,12 +113,15 @@ + + + @@ -129,16 +132,20 @@ + + + + @@ -150,14 +157,18 @@ + + + + @@ -179,10 +190,18 @@ + + + + + + + + @@ -203,12 +222,22 @@ + + + + + + + + + + @@ -237,8 +266,15 @@ + + + + + + + @@ -253,9 +289,18 @@ + + + + + + + + + @@ -274,13 +319,21 @@ + + + + + + + + @@ -302,6 +355,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -452,17 +608,25 @@ + + + + + + + + @@ -547,14 +711,17 @@ + + + @@ -599,7 +766,9 @@ + + diff --git a/docs/libnm-glib/html/libnm-glib-NMVPNPlugin.html b/docs/libnm-glib/html/libnm-glib-NMVPNPlugin.html index a8f13163..a05a01a4 100644 --- a/docs/libnm-glib/html/libnm-glib-NMVPNPlugin.html +++ b/docs/libnm-glib/html/libnm-glib-NMVPNPlugin.html @@ -49,8 +49,12 @@ enum NMVPNPluginFailure reason); DBusGConnection * nm_vpn_plugin_get_connection (NMVPNPlugin *plugin); NMVPNServiceState nm_vpn_plugin_get_state (NMVPNPlugin *plugin); +void nm_vpn_plugin_set_config (NMVPNPlugin *plugin, + GHashTable *config); void nm_vpn_plugin_set_ip4_config (NMVPNPlugin *plugin, GHashTable *ip4_config); +void nm_vpn_plugin_set_ip6_config (NMVPNPlugin *plugin, + GHashTable *ip6_config); void nm_vpn_plugin_set_login_banner (NMVPNPlugin *plugin, const char *banner); void nm_vpn_plugin_set_state (NMVPNPlugin *plugin, @@ -80,40 +84,44 @@ enum +

nm_vpn_plugin_set_config ()

+
void                nm_vpn_plugin_set_config            (NMVPNPlugin *plugin,
+                                                         GHashTable *config);
+

+

+
+
+

nm_vpn_plugin_set_ip4_config ()

void                nm_vpn_plugin_set_ip4_config        (NMVPNPlugin *plugin,
                                                          GHashTable *ip4_config);
@@ -200,6 +216,14 @@ enum +

nm_vpn_plugin_set_ip6_config ()

+
void                nm_vpn_plugin_set_ip6_config        (NMVPNPlugin *plugin,
+                                                         GHashTable *ip6_config);
+

+

+
+
+

nm_vpn_plugin_set_login_banner ()

void                nm_vpn_plugin_set_login_banner      (NMVPNPlugin *plugin,
                                                          const char *banner);
diff --git a/docs/libnm-glib/html/libnm-glib.devhelp2 b/docs/libnm-glib/html/libnm-glib.devhelp2 index edbb4a26..08ca3a93 100644 --- a/docs/libnm-glib/html/libnm-glib.devhelp2 +++ b/docs/libnm-glib/html/libnm-glib.devhelp2 @@ -12,6 +12,10 @@ + + + + @@ -121,12 +125,15 @@ + + + @@ -137,16 +144,20 @@ + + + + @@ -158,13 +169,17 @@ + + + + @@ -178,10 +193,13 @@ + + + @@ -193,12 +211,15 @@ + + + @@ -218,17 +239,23 @@ + + + + + + @@ -238,13 +265,16 @@ + + + @@ -264,6 +294,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -363,12 +447,16 @@ + + + + @@ -421,9 +509,11 @@ + + @@ -452,7 +542,9 @@ + + @@ -477,11 +569,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/libnm-glib/html/object-tree.html b/docs/libnm-glib/html/object-tree.html index bbc78129..40bce23a 100644 --- a/docs/libnm-glib/html/object-tree.html +++ b/docs/libnm-glib/html/object-tree.html @@ -32,10 +32,10 @@ NMDeviceModem NMDeviceBt NMDeviceWimax - NMDeviceOlpcMesh - NMDeviceInfiniband - NMDeviceBond - NMDeviceVlan + NMDeviceOlpcMesh + NMDeviceInfiniband + NMDeviceBond + NMDeviceVlan NMWimaxNsp NMAccessPoint NMIP4Config -- cgit 1.3.0-6-gf8a5