From 36cb2f364a821e1be50b23e03a18891ec55adb06 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Fri, 26 Oct 2012 21:32:57 +0200 Subject: Imported Upstream version 0.9.6.4 --- docs/libnm-glib/Makefile.in | 24 ++++++++++++++++- docs/libnm-glib/html/NMDeviceAdsl.html | 3 ++- docs/libnm-glib/html/NMDeviceBond.html | 45 ++++++++++++++++++++++++++++++++ docs/libnm-glib/html/NMSecretAgent.html | 4 +-- docs/libnm-glib/html/api-index-full.html | 12 +++++++++ docs/libnm-glib/html/ch02.html | 2 +- docs/libnm-glib/html/index.html | 4 +-- docs/libnm-glib/html/index.sgml | 3 +++ docs/libnm-glib/html/libnm-glib.devhelp2 | 3 +++ docs/libnm-glib/libnm-glib-sections.txt | 2 ++ docs/libnm-glib/tmpl/nm-device-bond.sgml | 21 +++++++++++++++ docs/libnm-glib/version.xml | 2 +- 12 files changed, 117 insertions(+), 8 deletions(-) (limited to 'docs/libnm-glib') diff --git a/docs/libnm-glib/Makefile.in b/docs/libnm-glib/Makefile.in index 066e42e5..717cfbf0 100644 --- a/docs/libnm-glib/Makefile.in +++ b/docs/libnm-glib/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. +# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -21,6 +21,23 @@ # Everything below here is generic # #################################### VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -68,6 +85,11 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ diff --git a/docs/libnm-glib/html/NMDeviceAdsl.html b/docs/libnm-glib/html/NMDeviceAdsl.html index 3dae6d21..344031f5 100644 --- a/docs/libnm-glib/html/NMDeviceAdsl.html +++ b/docs/libnm-glib/html/NMDeviceAdsl.html @@ -212,7 +212,8 @@ Creates a new

Returns :

-a new device +a new device. [transfer full] + diff --git a/docs/libnm-glib/html/NMDeviceBond.html b/docs/libnm-glib/html/NMDeviceBond.html index 1cdc8e2a..9cb2c551 100644 --- a/docs/libnm-glib/html/NMDeviceBond.html +++ b/docs/libnm-glib/html/NMDeviceBond.html @@ -49,9 +49,11 @@ enum
NM_DEVICE_BOND_CARRIER #define NM_DEVICE_BOND_ERROR #define NM_DEVICE_BOND_HW_ADDRESS +#define NM_DEVICE_BOND_SLAVES GQuark nm_device_bond_error_quark (void); gboolean nm_device_bond_get_carrier (NMDeviceBond *device); const char * nm_device_bond_get_hw_address (NMDeviceBond *device); +const GPtrArray * nm_device_bond_get_slaves (NMDeviceBond *device); GObject * nm_device_bond_new (DBusGConnection *connection, const char *path); @@ -76,6 +78,7 @@ NMDeviceBond implements
   "carrier"                  gboolean              : Read
   "hw-address"               gchar*                : Read
+  "slaves"                   NMObjectArray*        : Read
 
@@ -171,6 +174,14 @@ NMDeviceBond implements

+

NM_DEVICE_BOND_SLAVES

+
#define NM_DEVICE_BOND_SLAVES      "slaves"
+
+

+

+
+
+

nm_device_bond_error_quark ()

GQuark              nm_device_bond_error_quark          (void);

@@ -232,6 +243,32 @@ device, and must not be modified.


+

nm_device_bond_get_slaves ()

+
const GPtrArray *   nm_device_bond_get_slaves           (NMDeviceBond *device);
+

+Gets the devices currently slaved to device. +

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

device :

a NMDeviceBond +

Returns :

the GPtrArray containing +NMDevices that are slaves of device. This is the internal +copy used by the device, and must not be modified. [element-type NMClient.Device] +
+

Since 0.9.6.4

+
+
+

nm_device_bond_new ()

GObject *           nm_device_bond_new                  (DBusGConnection *connection,
                                                          const char *path);
@@ -278,6 +315,14 @@ The hardware (MAC) address of the device.

Default value: NULL

+
+
+

The "slaves" property

+
  "slaves"                   NMObjectArray*        : Read
+

+The devices (NMDevice) slaved to the bond device. +

+