diff options
Diffstat (limited to 'docs/libnm-glib')
76 files changed, 1032 insertions, 5984 deletions
diff --git a/docs/libnm-glib/Makefile.in b/docs/libnm-glib/Makefile.in index 796e69f2..8c0dbdce 100644 --- a/docs/libnm-glib/Makefile.in +++ b/docs/libnm-glib/Makefile.in @@ -142,6 +142,7 @@ ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AM_TESTS_FD_REDIRECT = @AM_TESTS_FD_REDIRECT@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ @@ -255,6 +256,7 @@ LIBTEAMDCTL_LIBS = @LIBTEAMDCTL_LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ +LOG_DRIVER = @LOG_DRIVER@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ @@ -480,6 +482,7 @@ GPATH = $(srcdir) TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) SETUP_FILES = \ $(content_files) \ + $(expand_content_files) \ $(DOC_MAIN_SGML_FILE) \ $(DOC_MODULE)-sections.txt \ $(DOC_MODULE)-overrides.txt @@ -487,9 +490,9 @@ SETUP_FILES = \ # include common portion ... EXTRA_DIST = $(HTML_IMAGES) $(SETUP_FILES) version.xml.in -DOC_STAMPS = setup-build.stamp scan-build.stamp tmpl-build.stamp sgml-build.stamp \ +DOC_STAMPS = setup-build.stamp scan-build.stamp sgml-build.stamp \ html-build.stamp pdf-build.stamp \ - tmpl.stamp sgml.stamp html.stamp pdf.stamp + sgml.stamp html.stamp pdf.stamp SCANOBJ_FILES = \ $(DOC_MODULE).args \ @@ -524,11 +527,6 @@ GTK_DOC_V_INTROSPECT = $(GTK_DOC_V_INTROSPECT_$(V)) GTK_DOC_V_INTROSPECT_ = $(GTK_DOC_V_INTROSPECT_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_INTROSPECT_0 = @echo " DOC Introspecting gobjects"; -#### templates #### -GTK_DOC_V_TMPL = $(GTK_DOC_V_TMPL_$(V)) -GTK_DOC_V_TMPL_ = $(GTK_DOC_V_TMPL_$(AM_DEFAULT_VERBOSITY)) -GTK_DOC_V_TMPL_0 = @echo " DOC Rebuilding template files"; - #### xml #### GTK_DOC_V_XML = $(GTK_DOC_V_XML_$(V)) GTK_DOC_V_XML_ = $(GTK_DOC_V_XML_$(AM_DEFAULT_VERBOSITY)) @@ -765,18 +763,15 @@ $(REPORT_FILES): sgml-build.stamp setup-build.stamp: -$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ - files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \ + files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \ if test "x$$files" != "x" ; then \ for file in $$files ; do \ - destdir=`dirname $(abs_builddir)/$$file` ;\ + destdir=`dirname $(abs_builddir)/$$file`; \ test -d "$$destdir" || mkdir -p "$$destdir"; \ test -f $(abs_srcdir)/$$file && \ cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \ done; \ fi; \ - test -d $(abs_srcdir)/tmpl && \ - { cp -pR $(abs_srcdir)/tmpl $(abs_builddir)/; \ - chmod -R u+w $(abs_builddir)/tmpl; } \ fi $(AM_V_at)touch setup-build.stamp @@ -789,7 +784,7 @@ scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \ scanobj_options=""; \ gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ - if test "$(?)" = "0"; then \ + if test "$$?" = "0"; then \ if test "x$(V)" = "x1"; then \ scanobj_options="--verbose"; \ fi; \ @@ -806,23 +801,8 @@ scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp @true -tmpl-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt - $(GTK_DOC_V_TMPL)gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) - $(AM_V_at)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ - if test -w $(abs_srcdir) ; then \ - cp -pR $(abs_builddir)/tmpl $(abs_srcdir)/; \ - fi \ - fi - $(AM_V_at)touch tmpl-build.stamp - -tmpl.stamp: tmpl-build.stamp - @true - -$(srcdir)/tmpl/*.sgml: - @true - -sgml-build.stamp: tmpl.stamp $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) - -$(GTK_DOC_V_XML)chmod -R u+w $(srcdir) && _source_dir='' ; \ +sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) + $(GTK_DOC_V_XML)_source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ @@ -832,17 +812,17 @@ sgml-build.stamp: tmpl.stamp $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $( sgml.stamp: sgml-build.stamp @true -html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) +html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files) $(GTK_DOC_V_HTML)rm -rf html && mkdir html && \ mkhtml_options=""; \ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \ - if test "$(?)" = "0"; then \ + if test "$$?" = "0"; then \ if test "x$(V)" = "x1"; then \ mkhtml_options="$$mkhtml_options --verbose"; \ fi; \ fi; \ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \ - if test "$(?)" = "0"; then \ + if test "$$?" = "0"; then \ mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \ fi; \ cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) @@ -858,11 +838,11 @@ html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) $(AM_V_at)touch html-build.stamp -pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) +pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files) $(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \ mkpdf_options=""; \ gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \ - if test "$(?)" = "0"; then \ + if test "$$?" = "0"; then \ if test "x$(V)" = "x1"; then \ mkpdf_options="$$mkpdf_options --verbose"; \ fi; \ @@ -887,13 +867,15 @@ clean-local: @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \ rm -f $(DOC_MODULE).types; \ fi + @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \ + rm -f $(DOC_MODULE)-sections.txt; \ + fi distclean-local: @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \ $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ - rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \ - rm -rf tmpl; \ + rm -f $(SETUP_FILES) $(DOC_MODULE).types; \ fi maintainer-clean-local: @@ -940,9 +922,7 @@ uninstall-local: @HAVE_GTK_DOC_FALSE@ @false dist-hook: dist-check-gtkdoc all-gtk-doc dist-hook-local - @mkdir $(distdir)/tmpl @mkdir $(distdir)/html - @-cp ./tmpl/*.sgml $(distdir)/tmpl @cp ./html/* $(distdir)/html @-cp ./$(DOC_MODULE).pdf $(distdir)/ @-cp ./$(DOC_MODULE).types $(distdir)/ diff --git a/docs/libnm-glib/html/NMAccessPoint.html b/docs/libnm-glib/html/NMAccessPoint.html index e0e5660a..9182a27a 100644 --- a/docs/libnm-glib/html/NMAccessPoint.html +++ b/docs/libnm-glib/html/NMAccessPoint.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMAccessPoint</title> +<title>NMAccessPoint: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMWimaxNsp.html" title="NMWimaxNsp"> <link rel="next" href="NMIP4Config.html" title="NMIP4Config"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -270,8 +270,6 @@ </div> <div class="refsect1"> <a name="NMAccessPoint.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMAccessPoint.functions_details"></a><h2>Functions</h2> @@ -333,7 +331,6 @@ nm_access_point_get_flags (<em class="parameter"><code><a class="link" href="NMA <div class="refsect3"> <a name="id-1.3.19.8.3.6"></a><h4>Returns</h4> <p> the flags</p> -<p></p> </div> </div> <hr> @@ -360,7 +357,6 @@ nm_access_point_get_wpa_flags (<em class="parameter"><code><a class="link" href= <div class="refsect3"> <a name="id-1.3.19.8.4.6"></a><h4>Returns</h4> <p> the WPA flags</p> -<p></p> </div> </div> <hr> @@ -388,7 +384,6 @@ point.</p> <div class="refsect3"> <a name="id-1.3.19.8.5.6"></a><h4>Returns</h4> <p> the RSN flags</p> -<p></p> </div> </div> <hr> @@ -416,7 +411,6 @@ nm_access_point_get_ssid (<em class="parameter"><code><a class="link" href="NMAc <a name="id-1.3.19.8.6.6"></a><h4>Returns</h4> <p> the <span class="type">GByteArray</span> containing the SSID. This is the internal copy used by the access point, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -444,7 +438,6 @@ nm_access_point_get_bssid (<em class="parameter"><code><a class="link" href="NMA <a name="id-1.3.19.8.7.6"></a><h4>Returns</h4> <p> the BSSID of the access point. This is an internal string and must not be modified or freed.</p> -<p></p> </div> </div> <hr> @@ -471,7 +464,6 @@ nm_access_point_get_frequency (<em class="parameter"><code><a class="link" href= <div class="refsect3"> <a name="id-1.3.19.8.8.6"></a><h4>Returns</h4> <p> the frequency</p> -<p></p> </div> </div> <hr> @@ -498,7 +490,6 @@ nm_access_point_get_mode (<em class="parameter"><code><a class="link" href="NMAc <div class="refsect3"> <a name="id-1.3.19.8.9.6"></a><h4>Returns</h4> <p> the mode</p> -<p></p> </div> </div> <hr> @@ -525,7 +516,6 @@ nm_access_point_get_max_bitrate (<em class="parameter"><code><a class="link" hre <div class="refsect3"> <a name="id-1.3.19.8.10.6"></a><h4>Returns</h4> <p> the maximum bit rate (kbit/s)</p> -<p></p> </div> </div> <hr> @@ -552,7 +542,6 @@ nm_access_point_get_strength (<em class="parameter"><code><a class="link" href=" <div class="refsect3"> <a name="id-1.3.19.8.11.6"></a><h4>Returns</h4> <p> the signal strength</p> -<p></p> </div> </div> <hr> @@ -643,7 +632,6 @@ against</p></td> <a name="id-1.3.19.8.13.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the connection may be activated with this Wi-Fi AP, <code class="literal">FALSE</code> if it cannot be.</p> -<p></p> </div> </div> <hr> @@ -675,7 +663,6 @@ nm_access_point_get_hw_address (<em class="parameter"><code><a class="link" href <a name="id-1.3.19.8.14.7"></a><h4>Returns</h4> <p> the hardware address of the access point. This is the internal string used by the access point and must not be modified.</p> -<p></p> </div> </div> </div> @@ -685,80 +672,60 @@ access point and must not be modified.</p> <a name="NM-ACCESS-POINT-FLAGS:CAPS"></a><h3>NM_ACCESS_POINT_FLAGS</h3> <pre class="programlisting">#define NM_ACCESS_POINT_FLAGS "flags" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACCESS-POINT-WPA-FLAGS:CAPS"></a><h3>NM_ACCESS_POINT_WPA_FLAGS</h3> <pre class="programlisting">#define NM_ACCESS_POINT_WPA_FLAGS "wpa-flags" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACCESS-POINT-RSN-FLAGS:CAPS"></a><h3>NM_ACCESS_POINT_RSN_FLAGS</h3> <pre class="programlisting">#define NM_ACCESS_POINT_RSN_FLAGS "rsn-flags" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACCESS-POINT-SSID:CAPS"></a><h3>NM_ACCESS_POINT_SSID</h3> <pre class="programlisting">#define NM_ACCESS_POINT_SSID "ssid" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACCESS-POINT-BSSID:CAPS"></a><h3>NM_ACCESS_POINT_BSSID</h3> <pre class="programlisting">#define NM_ACCESS_POINT_BSSID "bssid" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACCESS-POINT-FREQUENCY:CAPS"></a><h3>NM_ACCESS_POINT_FREQUENCY</h3> <pre class="programlisting">#define NM_ACCESS_POINT_FREQUENCY "frequency" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACCESS-POINT-MODE:CAPS"></a><h3>NM_ACCESS_POINT_MODE</h3> <pre class="programlisting">#define NM_ACCESS_POINT_MODE "mode" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACCESS-POINT-MAX-BITRATE:CAPS"></a><h3>NM_ACCESS_POINT_MAX_BITRATE</h3> <pre class="programlisting">#define NM_ACCESS_POINT_MAX_BITRATE "max-bitrate" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACCESS-POINT-STRENGTH:CAPS"></a><h3>NM_ACCESS_POINT_STRENGTH</h3> <pre class="programlisting">#define NM_ACCESS_POINT_STRENGTH "strength" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACCESS-POINT-HW-ADDRESS:CAPS"></a><h3>NM_ACCESS_POINT_HW_ADDRESS</h3> <pre class="programlisting">#define NM_ACCESS_POINT_HW_ADDRESS "hw-address" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -766,7 +733,7 @@ access point and must not be modified.</p> <div class="refsect2"> <a name="NMAccessPoint--bssid"></a><h3>The <code class="literal">“bssid”</code> property</h3> <pre class="programlisting"> “bssid” <span class="type">gchar</span> *</pre> -<p></p> +<p>The BSSID of the access point.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -774,7 +741,7 @@ access point and must not be modified.</p> <div class="refsect2"> <a name="NMAccessPoint--flags"></a><h3>The <code class="literal">“flags”</code> property</h3> <pre class="programlisting"> “flags” <span class="type">guint</span></pre> -<p></p> +<p>The flags of the access point.</p> <p>Flags: Read</p> <p>Allowed values: <= 1</p> <p>Default value: 0</p> @@ -783,7 +750,7 @@ access point and must not be modified.</p> <div class="refsect2"> <a name="NMAccessPoint--frequency"></a><h3>The <code class="literal">“frequency”</code> property</h3> <pre class="programlisting"> “frequency” <span class="type">guint</span></pre> -<p></p> +<p>The frequency of the access point.</p> <p>Flags: Read</p> <p>Allowed values: <= 10000</p> <p>Default value: 0</p> @@ -792,7 +759,7 @@ access point and must not be modified.</p> <div class="refsect2"> <a name="NMAccessPoint--hw-address"></a><h3>The <code class="literal">“hw-address”</code> property</h3> <pre class="programlisting"> “hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The hardware address of the access point.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -800,7 +767,7 @@ access point and must not be modified.</p> <div class="refsect2"> <a name="NMAccessPoint--max-bitrate"></a><h3>The <code class="literal">“max-bitrate”</code> property</h3> <pre class="programlisting"> “max-bitrate” <span class="type">guint</span></pre> -<p></p> +<p>The maximum bit rate of the access point in kbit/s.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -808,7 +775,9 @@ access point and must not be modified.</p> <div class="refsect2"> <a name="NMAccessPoint--mode"></a><h3>The <code class="literal">“mode”</code> property</h3> <pre class="programlisting"> “mode” <span class="type">guint</span></pre> -<p></p> +<p>The mode of the access point; either "infrastructure" (a central +coordinator of the wireless network allowing clients to connect) or +"ad-hoc" (a network with no central controller).</p> <p>Flags: Read</p> <p>Allowed values: [1,2]</p> <p>Default value: 2</p> @@ -817,7 +786,7 @@ access point and must not be modified.</p> <div class="refsect2"> <a name="NMAccessPoint--rsn-flags"></a><h3>The <code class="literal">“rsn-flags”</code> property</h3> <pre class="programlisting"> “rsn-flags” <span class="type">guint</span></pre> -<p></p> +<p>The RSN flags of the access point.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -825,14 +794,14 @@ access point and must not be modified.</p> <div class="refsect2"> <a name="NMAccessPoint--ssid"></a><h3>The <code class="literal">“ssid”</code> property</h3> <pre class="programlisting"> “ssid” <span class="type">NMSsid</span> *</pre> -<p></p> +<p>The SSID of the access point.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMAccessPoint--strength"></a><h3>The <code class="literal">“strength”</code> property</h3> <pre class="programlisting"> “strength” <span class="type">guchar</span></pre> -<p></p> +<p>The current signal strength of the access point.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -840,14 +809,13 @@ access point and must not be modified.</p> <div class="refsect2"> <a name="NMAccessPoint--wpa-flags"></a><h3>The <code class="literal">“wpa-flags”</code> property</h3> <pre class="programlisting"> “wpa-flags” <span class="type">guint</span></pre> -<p></p> +<p>The WPA flags of the access point.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMActiveConnection.html b/docs/libnm-glib/html/NMActiveConnection.html index d5f1b381..51037dca 100644 --- a/docs/libnm-glib/html/NMActiveConnection.html +++ b/docs/libnm-glib/html/NMActiveConnection.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMActiveConnection</title> +<title>NMActiveConnection: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMClient.html" title="NMClient"> <link rel="next" href="NMDevice.html" title="NMDevice"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -344,8 +344,6 @@ </div> <div class="refsect1"> <a name="NMActiveConnection.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMActiveConnection.functions_details"></a><h2>Functions</h2> @@ -411,7 +409,6 @@ nm_active_connection_get_connection (<em class="parameter"><code><a class="link" <p> the object path of the <a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html"><span class="type">NMConnection</span></a> which this <a class="link" href="NMActiveConnection.html" title="NMActiveConnection"><span class="type">NMActiveConnection</span></a> is an active instance of. This is the internal string used by the connection, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -439,9 +436,8 @@ nm_active_connection_get_id (<em class="parameter"><code><a class="link" href="N <a name="id-1.3.3.8.4.6"></a><h4>Returns</h4> <p> the ID of the <a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html"><span class="type">NMConnection</span></a> that backs the <a class="link" href="NMActiveConnection.html" title="NMActiveConnection"><span class="type">NMActiveConnection</span></a>. This is the internal string used by the connection, and must not be modified.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -468,7 +464,6 @@ nm_active_connection_get_uuid (<em class="parameter"><code><a class="link" href= <a name="id-1.3.3.8.5.6"></a><h4>Returns</h4> <p> the UUID of the <a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html"><span class="type">NMConnection</span></a> that backs the <a class="link" href="NMActiveConnection.html" title="NMActiveConnection"><span class="type">NMActiveConnection</span></a>. This is the internal string used by the connection, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -497,9 +492,8 @@ nm_active_connection_get_connection_type <a name="id-1.3.3.8.6.6"></a><h4>Returns</h4> <p> the type of the <a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html"><span class="type">NMConnection</span></a> that backs the <a class="link" href="NMActiveConnection.html" title="NMActiveConnection"><span class="type">NMActiveConnection</span></a>. This is the internal string used by the connection, and must not be modified.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -527,7 +521,6 @@ nm_active_connection_get_specific_object <a name="id-1.3.3.8.7.6"></a><h4>Returns</h4> <p> the specific object's DBus path. This is the internal string used by the connection, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -582,7 +575,6 @@ nm_active_connection_get_state (<em class="parameter"><code><a class="link" href <div class="refsect3"> <a name="id-1.3.3.8.9.6"></a><h4>Returns</h4> <p> the state</p> -<p></p> </div> </div> <hr> @@ -610,7 +602,6 @@ nm_active_connection_get_master (<em class="parameter"><code><a class="link" hre <a name="id-1.3.3.8.10.6"></a><h4>Returns</h4> <p> the path of the master <a class="link" href="NMDevice.html" title="NMDevice"><span class="type">NMDevice</span></a> of the <a class="link" href="NMActiveConnection.html" title="NMActiveConnection"><span class="type">NMActiveConnection</span></a>. This is the internal string used by the connection, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -638,7 +629,6 @@ the default IPv4 route and DNS information).</p> <div class="refsect3"> <a name="id-1.3.3.8.11.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the active connection is the default IPv4 connection</p> -<p></p> </div> </div> <hr> @@ -665,11 +655,11 @@ nm_active_connection_get_ip4_config (<em class="parameter"><code><a class="link" <div class="refsect3"> <a name="id-1.3.3.8.12.6"></a><h4>Returns</h4> <p> the <a class="link" href="NMIP4Config.html" title="NMIP4Config"><span class="type">NMIP4Config</span></a>, or <code class="literal">NULL</code> if the -connection is not in the <code class="literal">NM_ACTIVE_CONNECTION_STATE_ACTIVATED</code> +connection is not in the <a href="https://developer.gnome.org/libnm-util/0.9/libnm-util-NetworkManager.html#NM-ACTIVE-CONNECTION-STATE-ACTIVATED:CAPS"><code class="literal">NM_ACTIVE_CONNECTION_STATE_ACTIVATED</code></a> state. </p> <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -697,10 +687,10 @@ nm_active_connection_get_dhcp4_config (<em class="parameter"><code><a class="lin <a name="id-1.3.3.8.13.6"></a><h4>Returns</h4> <p> the <a class="link" href="NMDHCP4Config.html" title="NMDHCP4Config"><span class="type">NMDHCP4Config</span></a>, or <code class="literal">NULL</code> if the connection does not use DHCP, or is not in the -<code class="literal">NM_ACTIVE_CONNECTION_STATE_ACTIVATED</code> state. </p> +<a href="https://developer.gnome.org/libnm-util/0.9/libnm-util-NetworkManager.html#NM-ACTIVE-CONNECTION-STATE-ACTIVATED:CAPS"><code class="literal">NM_ACTIVE_CONNECTION_STATE_ACTIVATED</code></a> state. </p> <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -727,7 +717,6 @@ the default IPv6 route and DNS information).</p> <div class="refsect3"> <a name="id-1.3.3.8.14.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the active connection is the default IPv6 connection</p> -<p></p> </div> </div> <hr> @@ -754,11 +743,11 @@ nm_active_connection_get_ip6_config (<em class="parameter"><code><a class="link" <div class="refsect3"> <a name="id-1.3.3.8.15.6"></a><h4>Returns</h4> <p> the <a class="link" href="NMIP6Config.html" title="NMIP6Config"><span class="type">NMIP6Config</span></a>, or <code class="literal">NULL</code> if the -connection is not in the <code class="literal">NM_ACTIVE_CONNECTION_STATE_ACTIVATED</code> +connection is not in the <a href="https://developer.gnome.org/libnm-util/0.9/libnm-util-NetworkManager.html#NM-ACTIVE-CONNECTION-STATE-ACTIVATED:CAPS"><code class="literal">NM_ACTIVE_CONNECTION_STATE_ACTIVATED</code></a> state. </p> <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -786,10 +775,10 @@ nm_active_connection_get_dhcp6_config (<em class="parameter"><code><a class="lin <a name="id-1.3.3.8.16.6"></a><h4>Returns</h4> <p> the <a class="link" href="NMDHCP6Config.html" title="NMDHCP6Config"><span class="type">NMDHCP6Config</span></a>, or <code class="literal">NULL</code> if the connection does not use DHCPv6, or is not in the -<code class="literal">NM_ACTIVE_CONNECTION_STATE_ACTIVATED</code> state. </p> +<a href="https://developer.gnome.org/libnm-util/0.9/libnm-util-NetworkManager.html#NM-ACTIVE-CONNECTION-STATE-ACTIVATED:CAPS"><code class="literal">NM_ACTIVE_CONNECTION_STATE_ACTIVATED</code></a> state. </p> <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -815,9 +804,8 @@ nm_active_connection_get_vpn (<em class="parameter"><code><a class="link" href=" <div class="refsect3"> <a name="id-1.3.3.8.17.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the active connection is a VPN connection</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> </div> <div class="refsect1"> @@ -826,120 +814,90 @@ nm_active_connection_get_vpn (<em class="parameter"><code><a class="link" href=" <a name="NM-ACTIVE-CONNECTION-CONNECTION:CAPS"></a><h3>NM_ACTIVE_CONNECTION_CONNECTION</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_CONNECTION "connection" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-ID:CAPS"></a><h3>NM_ACTIVE_CONNECTION_ID</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_ID "id" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-UUID:CAPS"></a><h3>NM_ACTIVE_CONNECTION_UUID</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_UUID "uuid" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-TYPE:CAPS"></a><h3>NM_ACTIVE_CONNECTION_TYPE</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_TYPE "type" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-SPECIFIC-OBJECT:CAPS"></a><h3>NM_ACTIVE_CONNECTION_SPECIFIC_OBJECT</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_SPECIFIC_OBJECT "specific-object" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-DEVICES:CAPS"></a><h3>NM_ACTIVE_CONNECTION_DEVICES</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_DEVICES "devices" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-STATE:CAPS"></a><h3>NM_ACTIVE_CONNECTION_STATE</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_STATE "state" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-DEFAULT:CAPS"></a><h3>NM_ACTIVE_CONNECTION_DEFAULT</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_DEFAULT "default" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-IP4-CONFIG:CAPS"></a><h3>NM_ACTIVE_CONNECTION_IP4_CONFIG</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_IP4_CONFIG "ip4-config" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-DHCP4-CONFIG:CAPS"></a><h3>NM_ACTIVE_CONNECTION_DHCP4_CONFIG</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_DHCP4_CONFIG "dhcp4-config" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-DEFAULT6:CAPS"></a><h3>NM_ACTIVE_CONNECTION_DEFAULT6</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_DEFAULT6 "default6" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-IP6-CONFIG:CAPS"></a><h3>NM_ACTIVE_CONNECTION_IP6_CONFIG</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_IP6_CONFIG "ip6-config" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-DHCP6-CONFIG:CAPS"></a><h3>NM_ACTIVE_CONNECTION_DHCP6_CONFIG</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_DHCP6_CONFIG "dhcp6-config" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-VPN:CAPS"></a><h3>NM_ACTIVE_CONNECTION_VPN</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_VPN "vpn" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-ACTIVE-CONNECTION-MASTER:CAPS"></a><h3>NM_ACTIVE_CONNECTION_MASTER</h3> <pre class="programlisting">#define NM_ACTIVE_CONNECTION_MASTER "master" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -947,7 +905,7 @@ nm_active_connection_get_vpn (<em class="parameter"><code><a class="link" href=" <div class="refsect2"> <a name="NMActiveConnection--connection"></a><h3>The <code class="literal">“connection”</code> property</h3> <pre class="programlisting"> “connection” <span class="type">gchar</span> *</pre> -<p></p> +<p>The connection's path of the active connection.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -955,7 +913,7 @@ nm_active_connection_get_vpn (<em class="parameter"><code><a class="link" href=" <div class="refsect2"> <a name="NMActiveConnection--default"></a><h3>The <code class="literal">“default”</code> property</h3> <pre class="programlisting"> “default” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the active connection is the default IPv4 one.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -963,7 +921,7 @@ nm_active_connection_get_vpn (<em class="parameter"><code><a class="link" href=" <div class="refsect2"> <a name="NMActiveConnection--default6"></a><h3>The <code class="literal">“default6”</code> property</h3> <pre class="programlisting"> “default6” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the active connection is the default IPv6 one.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -971,55 +929,54 @@ nm_active_connection_get_vpn (<em class="parameter"><code><a class="link" href=" <div class="refsect2"> <a name="NMActiveConnection--devices"></a><h3>The <code class="literal">“devices”</code> property</h3> <pre class="programlisting"> “devices” <span class="type">NMObjectArray</span> *</pre> -<p></p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMActiveConnection--dhcp4-config"></a><h3>The <code class="literal">“dhcp4-config”</code> property</h3> <pre class="programlisting"> “dhcp4-config” <a class="link" href="NMDHCP4Config.html" title="NMDHCP4Config"><span class="type">NMDHCP4Config</span></a> *</pre> -<p></p> +<p>The <a class="link" href="NMDHCP4Config.html" title="NMDHCP4Config"><span class="type">NMDHCP4Config</span></a> of the connection.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMActiveConnection--dhcp6-config"></a><h3>The <code class="literal">“dhcp6-config”</code> property</h3> <pre class="programlisting"> “dhcp6-config” <a class="link" href="NMDHCP6Config.html" title="NMDHCP6Config"><span class="type">NMDHCP6Config</span></a> *</pre> -<p></p> +<p>The <a class="link" href="NMDHCP6Config.html" title="NMDHCP6Config"><span class="type">NMDHCP6Config</span></a> of the connection.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMActiveConnection--id"></a><h3>The <code class="literal">“id”</code> property</h3> <pre class="programlisting"> “id” <span class="type">gchar</span> *</pre> -<p></p> +<p>The active connection's ID</p> <p>Flags: Read</p> <p>Default value: NULL</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMActiveConnection--ip4-config"></a><h3>The <code class="literal">“ip4-config”</code> property</h3> <pre class="programlisting"> “ip4-config” <a class="link" href="NMIP4Config.html" title="NMIP4Config"><span class="type">NMIP4Config</span></a> *</pre> -<p></p> +<p>The <a class="link" href="NMIP4Config.html" title="NMIP4Config"><span class="type">NMIP4Config</span></a> of the connection.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMActiveConnection--ip6-config"></a><h3>The <code class="literal">“ip6-config”</code> property</h3> <pre class="programlisting"> “ip6-config” <a class="link" href="NMIP6Config.html" title="NMIP6Config"><span class="type">NMIP6Config</span></a> *</pre> -<p></p> +<p>The <a class="link" href="NMIP6Config.html" title="NMIP6Config"><span class="type">NMIP6Config</span></a> of the connection.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMActiveConnection--master"></a><h3>The <code class="literal">“master”</code> property</h3> <pre class="programlisting"> “master” <span class="type">gchar</span> *</pre> -<p></p> +<p>The path of the master device if one exists.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -1027,7 +984,7 @@ nm_active_connection_get_vpn (<em class="parameter"><code><a class="link" href=" <div class="refsect2"> <a name="NMActiveConnection--specific-object"></a><h3>The <code class="literal">“specific-object”</code> property</h3> <pre class="programlisting"> “specific-object” <span class="type">gchar</span> *</pre> -<p></p> +<p>The specific object's path of the active connection.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -1035,7 +992,7 @@ nm_active_connection_get_vpn (<em class="parameter"><code><a class="link" href=" <div class="refsect2"> <a name="NMActiveConnection--state"></a><h3>The <code class="literal">“state”</code> property</h3> <pre class="programlisting"> “state” <span class="type">guint</span></pre> -<p></p> +<p>The state of the active connection.</p> <p>Flags: Read</p> <p>Allowed values: <= 3</p> <p>Default value: 0</p> @@ -1044,16 +1001,16 @@ nm_active_connection_get_vpn (<em class="parameter"><code><a class="link" href=" <div class="refsect2"> <a name="NMActiveConnection--type"></a><h3>The <code class="literal">“type”</code> property</h3> <pre class="programlisting"> “type” <span class="type">gchar</span> *</pre> -<p></p> +<p>The active connection's type</p> <p>Flags: Read</p> <p>Default value: NULL</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMActiveConnection--uuid"></a><h3>The <code class="literal">“uuid”</code> property</h3> <pre class="programlisting"> “uuid” <span class="type">gchar</span> *</pre> -<p></p> +<p>The active connection's UUID</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -1061,15 +1018,14 @@ nm_active_connection_get_vpn (<em class="parameter"><code><a class="link" href=" <div class="refsect2"> <a name="NMActiveConnection--vpn"></a><h3>The <code class="literal">“vpn”</code> property</h3> <pre class="programlisting"> “vpn” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the active connection is a VPN connection.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMClient.html b/docs/libnm-glib/html/NMClient.html index 23eca511..1f0d4ae2 100644 --- a/docs/libnm-glib/html/NMClient.html +++ b/docs/libnm-glib/html/NMClient.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMClient</title> +<title>NMClient: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="ch02.html" title="libnm-glib API Reference"> <link rel="next" href="NMActiveConnection.html" title="NMActiveConnection"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -570,8 +570,6 @@ </div> <div class="refsect1"> <a name="NMClient.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMClient.functions_details"></a><h2>Functions</h2> @@ -583,9 +581,8 @@ nm_client_error_quark (<em class="parameter"><code><span class="type">void</span <div class="refsect3"> <a name="id-1.3.2.9.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a> errors.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -602,7 +599,6 @@ control them. To access and modify network configuration data, use the <div class="refsect3"> <a name="id-1.3.2.9.3.7"></a><h4>Returns</h4> <p> a new <a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a> or NULL on an error</p> -<p></p> </div> </div> <hr> @@ -681,7 +677,6 @@ nm_client_new_finish (<em class="parameter"><code><span class="type">GAsyncResul <div class="refsect3"> <a name="id-1.3.2.9.5.6"></a><h4>Returns</h4> <p> a new <a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a>, or <code class="literal">NULL</code> on error</p> -<p></p> </div> </div> <hr> @@ -796,8 +791,6 @@ or <code class="literal">NULL</code> if none is found. </p> <em class="parameter"><code><a class="link" href="NMActiveConnection.html" title="NMActiveConnection"><span class="type">NMActiveConnection</span></a> *active_connection</code></em>, <em class="parameter"><code><span class="type">GError</span> *error</code></em>, <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -885,8 +878,6 @@ details of the newly added connection. </p></td> <em class="parameter"><code>const <span class="type">char</span> *new_connection_path</code></em>, <em class="parameter"><code><span class="type">GError</span> *error</code></em>, <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -1014,7 +1005,6 @@ nm_client_networking_get_enabled (<em class="parameter"><code><a class="link" hr <div class="refsect3"> <a name="id-1.3.2.9.14.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if networking is enabled, <code class="literal">FALSE</code> if networking is disabled</p> -<p></p> </div> </div> <hr> @@ -1073,7 +1063,6 @@ nm_client_wireless_get_enabled (<em class="parameter"><code><a class="link" href <div class="refsect3"> <a name="id-1.3.2.9.16.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if wireless is enabled</p> -<p></p> </div> </div> <hr> @@ -1131,7 +1120,6 @@ nm_client_wireless_hardware_get_enabled <div class="refsect3"> <a name="id-1.3.2.9.18.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the wireless hardware is enabled</p> -<p></p> </div> </div> <hr> @@ -1158,7 +1146,6 @@ nm_client_wwan_get_enabled (<em class="parameter"><code><a class="link" href="NM <div class="refsect3"> <a name="id-1.3.2.9.19.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if WWAN is enabled</p> -<p></p> </div> </div> <hr> @@ -1215,7 +1202,6 @@ nm_client_wwan_hardware_get_enabled (<em class="parameter"><code><a class="link" <div class="refsect3"> <a name="id-1.3.2.9.21.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the WWAN hardware is enabled</p> -<p></p> </div> </div> <hr> @@ -1242,7 +1228,6 @@ nm_client_wimax_get_enabled (<em class="parameter"><code><a class="link" href="N <div class="refsect3"> <a name="id-1.3.2.9.22.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if WiMAX is enabled</p> -<p></p> </div> </div> <hr> @@ -1299,7 +1284,6 @@ nm_client_wimax_hardware_get_enabled (<em class="parameter"><code><a class="link <div class="refsect3"> <a name="id-1.3.2.9.24.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the WiMAX hardware is enabled</p> -<p></p> </div> </div> <hr> @@ -1326,7 +1310,6 @@ nm_client_get_version (<em class="parameter"><code><a class="link" href="NMClien <div class="refsect3"> <a name="id-1.3.2.9.25.6"></a><h4>Returns</h4> <p> string with the version</p> -<p></p> </div> </div> <hr> @@ -1353,7 +1336,6 @@ nm_client_get_state (<em class="parameter"><code><a class="link" href="NMClient. <div class="refsect3"> <a name="id-1.3.2.9.26.6"></a><h4>Returns</h4> <p> the current <a href="https://developer.gnome.org/libnm-util/0.9/libnm-util-NetworkManager.html#NMState"><code class="literal">NMState</code></a></p> -<p></p> </div> </div> <hr> @@ -1381,9 +1363,8 @@ connections at startup.</p> <div class="refsect3"> <a name="id-1.3.2.9.27.6"></a><h4>Returns</h4> <p> whether the daemon is still starting up</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -1409,7 +1390,6 @@ nm_client_get_manager_running (<em class="parameter"><code><a class="link" href= <div class="refsect3"> <a name="id-1.3.2.9.28.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the daemon is running</p> -<p></p> </div> </div> <hr> @@ -1504,7 +1484,6 @@ client can or cannot perform the action the permission represents</p> <div class="refsect3"> <a name="id-1.3.2.9.31.6"></a><h4>Returns</h4> <p> the permission's result, one of <a class="link" href="NMClient.html#NMClientPermissionResult" title="enum NMClientPermissionResult"><span class="type">NMClientPermissionResult</span></a></p> -<p></p> </div> </div> <hr> @@ -1552,9 +1531,8 @@ a list of domains separated by ",". </p></td> <div class="refsect3"> <a name="id-1.3.2.9.32.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise</p> -<p></p> </div> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> <hr> <div class="refsect2"> @@ -1601,9 +1579,8 @@ domains separated by ",". (<code class="literal">NULL</code> or an empty string <div class="refsect3"> <a name="id-1.3.2.9.33.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise</p> -<p></p> </div> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> <hr> <div class="refsect2"> @@ -1632,9 +1609,8 @@ connectivity state first before returning any information.</p> <div class="refsect3"> <a name="id-1.3.2.9.34.6"></a><h4>Returns</h4> <p> the current connectivity state</p> -<p></p> </div> -<p class="since">Since 0.9.8.6</p> +<p class="since">Since: 0.9.8.6</p> </div> <hr> <div class="refsect2"> @@ -1678,9 +1654,8 @@ if you do not want to block.</p> <div class="refsect3"> <a name="id-1.3.2.9.35.7"></a><h4>Returns</h4> <p> the (new) current connectivity state</p> -<p></p> </div> -<p class="since">Since 0.9.8.6</p> +<p class="since">Since: 0.9.8.6</p> </div> <hr> <div class="refsect2"> @@ -1728,7 +1703,7 @@ re-checking, and <a class="link" href="NMClient.html#nm-client-check-connectivit </tbody> </table></div> </div> -<p class="since">Since 0.9.8.6</p> +<p class="since">Since: 0.9.8.6</p> </div> <hr> <div class="refsect2"> @@ -1769,9 +1744,8 @@ call.</p> <div class="refsect3"> <a name="id-1.3.2.9.37.6"></a><h4>Returns</h4> <p> the (new) current connectivity state</p> -<p></p> </div> -<p class="since">Since 0.9.8.6</p> +<p class="since">Since: 0.9.8.6</p> </div> <hr> <div class="refsect2"> @@ -1808,7 +1782,7 @@ non-NetworkManager-recognized device, this will return <code class="literal">NUL any. </p> <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> </div> -<p class="since">Since 0.9.8.6</p> +<p class="since">Since: 0.9.8.6</p> </div> <hr> <div class="refsect2"> @@ -1839,7 +1813,7 @@ currently-activating connection that is expected to become the new any. </p> <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> </div> -<p class="since">Since 0.9.8.6</p> +<p class="since">Since: 0.9.8.6</p> </div> </div> <div class="refsect1"> @@ -1848,128 +1822,96 @@ any. </p> <a name="NM-CLIENT-VERSION:CAPS"></a><h3>NM_CLIENT_VERSION</h3> <pre class="programlisting">#define NM_CLIENT_VERSION "version" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-STATE:CAPS"></a><h3>NM_CLIENT_STATE</h3> <pre class="programlisting">#define NM_CLIENT_STATE "state" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-STARTUP:CAPS"></a><h3>NM_CLIENT_STARTUP</h3> <pre class="programlisting">#define NM_CLIENT_STARTUP "startup" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-MANAGER-RUNNING:CAPS"></a><h3>NM_CLIENT_MANAGER_RUNNING</h3> <pre class="programlisting">#define NM_CLIENT_MANAGER_RUNNING "manager-running" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-NETWORKING-ENABLED:CAPS"></a><h3>NM_CLIENT_NETWORKING_ENABLED</h3> <pre class="programlisting">#define NM_CLIENT_NETWORKING_ENABLED "networking-enabled" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-WIRELESS-ENABLED:CAPS"></a><h3>NM_CLIENT_WIRELESS_ENABLED</h3> <pre class="programlisting">#define NM_CLIENT_WIRELESS_ENABLED "wireless-enabled" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-WIRELESS-HARDWARE-ENABLED:CAPS"></a><h3>NM_CLIENT_WIRELESS_HARDWARE_ENABLED</h3> <pre class="programlisting">#define NM_CLIENT_WIRELESS_HARDWARE_ENABLED "wireless-hardware-enabled" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-WWAN-ENABLED:CAPS"></a><h3>NM_CLIENT_WWAN_ENABLED</h3> <pre class="programlisting">#define NM_CLIENT_WWAN_ENABLED "wwan-enabled" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-WWAN-HARDWARE-ENABLED:CAPS"></a><h3>NM_CLIENT_WWAN_HARDWARE_ENABLED</h3> <pre class="programlisting">#define NM_CLIENT_WWAN_HARDWARE_ENABLED "wwan-hardware-enabled" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-WIMAX-ENABLED:CAPS"></a><h3>NM_CLIENT_WIMAX_ENABLED</h3> <pre class="programlisting">#define NM_CLIENT_WIMAX_ENABLED "wimax-enabled" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-WIMAX-HARDWARE-ENABLED:CAPS"></a><h3>NM_CLIENT_WIMAX_HARDWARE_ENABLED</h3> <pre class="programlisting">#define NM_CLIENT_WIMAX_HARDWARE_ENABLED "wimax-hardware-enabled" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-ACTIVE-CONNECTIONS:CAPS"></a><h3>NM_CLIENT_ACTIVE_CONNECTIONS</h3> <pre class="programlisting">#define NM_CLIENT_ACTIVE_CONNECTIONS "active-connections" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-CONNECTIVITY:CAPS"></a><h3>NM_CLIENT_CONNECTIVITY</h3> <pre class="programlisting">#define NM_CLIENT_CONNECTIVITY "connectivity" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-PRIMARY-CONNECTION:CAPS"></a><h3>NM_CLIENT_PRIMARY_CONNECTION</h3> <pre class="programlisting">#define NM_CLIENT_PRIMARY_CONNECTION "primary-connection" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-ACTIVATING-CONNECTION:CAPS"></a><h3>NM_CLIENT_ACTIVATING_CONNECTION</h3> <pre class="programlisting">#define NM_CLIENT_ACTIVATING_CONNECTION "activating-connection" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-CLIENT-DEVICES:CAPS"></a><h3>NM_CLIENT_DEVICES</h3> <pre class="programlisting">#define NM_CLIENT_DEVICES "devices" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -2176,8 +2118,6 @@ the user requires to obtain a given <a class="link" href="NMClient.html#NMClient <a name="NM-CLIENT-ERROR:CAPS"></a><h3>NM_CLIENT_ERROR</h3> <pre class="programlisting">#define NM_CLIENT_ERROR nm_client_error_quark () </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -2185,40 +2125,42 @@ the user requires to obtain a given <a class="link" href="NMClient.html#NMClient <div class="refsect2"> <a name="NMClient--activating-connection"></a><h3>The <code class="literal">“activating-connection”</code> property</h3> <pre class="programlisting"> “activating-connection” <a class="link" href="NMActiveConnection.html" title="NMActiveConnection"><span class="type">NMActiveConnection</span></a> *</pre> -<p></p> +<p>The <a class="link" href="NMActiveConnection.html" title="NMActiveConnection"><span class="type">NMActiveConnection</span></a> of the activating connection that is +likely to become the new <a class="link" href="NMClient.html#NMClient--primary-connection" title="The “primary-connection” property"><span class="type">“primary-connection”</span></a>.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.8.6</p> +<p class="since">Since: 0.9.8.6</p> </div> <hr> <div class="refsect2"> <a name="NMClient--active-connections"></a><h3>The <code class="literal">“active-connections”</code> property</h3> <pre class="programlisting"> “active-connections” <span class="type">NMObjectArray</span> *</pre> -<p></p> +<p>The active connections. +Type: GLib.PtrArray</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMClient--connectivity"></a><h3>The <code class="literal">“connectivity”</code> property</h3> <pre class="programlisting"> “connectivity” <span class="type">guint</span></pre> -<p></p> +<p>The network connectivity state.</p> <p>Flags: Read</p> <p>Allowed values: <= 4</p> <p>Default value: 0</p> -<p class="since">Since 0.9.8.6</p> +<p class="since">Since: 0.9.8.6</p> </div> <hr> <div class="refsect2"> <a name="NMClient--devices"></a><h3>The <code class="literal">“devices”</code> property</h3> <pre class="programlisting"> “devices” <span class="type">NMObjectArray</span> *</pre> -<p></p> +<p>List of known network devices.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMClient--manager-running"></a><h3>The <code class="literal">“manager-running”</code> property</h3> <pre class="programlisting"> “manager-running” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the daemon is running.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -2226,7 +2168,7 @@ the user requires to obtain a given <a class="link" href="NMClient.html#NMClient <div class="refsect2"> <a name="NMClient--networking-enabled"></a><h3>The <code class="literal">“networking-enabled”</code> property</h3> <pre class="programlisting"> “networking-enabled” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether networking is enabled.</p> <p>Flags: Read / Write</p> <p>Default value: TRUE</p> </div> @@ -2234,24 +2176,25 @@ the user requires to obtain a given <a class="link" href="NMClient.html#NMClient <div class="refsect2"> <a name="NMClient--primary-connection"></a><h3>The <code class="literal">“primary-connection”</code> property</h3> <pre class="programlisting"> “primary-connection” <a class="link" href="NMActiveConnection.html" title="NMActiveConnection"><span class="type">NMActiveConnection</span></a> *</pre> -<p></p> +<p>The <a class="link" href="NMActiveConnection.html" title="NMActiveConnection"><span class="type">NMActiveConnection</span></a> of the device with the default route; +see <a class="link" href="NMClient.html#nm-client-get-primary-connection" title="nm_client_get_primary_connection ()"><code class="function">nm_client_get_primary_connection()</code></a> for more details.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.8.6</p> +<p class="since">Since: 0.9.8.6</p> </div> <hr> <div class="refsect2"> <a name="NMClient--startup"></a><h3>The <code class="literal">“startup”</code> property</h3> <pre class="programlisting"> “startup” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the daemon is still starting up.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMClient--state"></a><h3>The <code class="literal">“state”</code> property</h3> <pre class="programlisting"> “state” <span class="type">guint</span></pre> -<p></p> +<p>The current daemon state.</p> <p>Flags: Read</p> <p>Allowed values: <= 70</p> <p>Default value: 0</p> @@ -2260,7 +2203,7 @@ the user requires to obtain a given <a class="link" href="NMClient.html#NMClient <div class="refsect2"> <a name="NMClient--version"></a><h3>The <code class="literal">“version”</code> property</h3> <pre class="programlisting"> “version” <span class="type">gchar</span> *</pre> -<p></p> +<p>The NetworkManager version.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -2268,7 +2211,7 @@ the user requires to obtain a given <a class="link" href="NMClient.html#NMClient <div class="refsect2"> <a name="NMClient--wimax-enabled"></a><h3>The <code class="literal">“wimax-enabled”</code> property</h3> <pre class="programlisting"> “wimax-enabled” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether WiMAX functionality is enabled.</p> <p>Flags: Read / Write</p> <p>Default value: FALSE</p> </div> @@ -2276,7 +2219,7 @@ the user requires to obtain a given <a class="link" href="NMClient.html#NMClient <div class="refsect2"> <a name="NMClient--wimax-hardware-enabled"></a><h3>The <code class="literal">“wimax-hardware-enabled”</code> property</h3> <pre class="programlisting"> “wimax-hardware-enabled” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the WiMAX hardware is enabled.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -2284,7 +2227,7 @@ the user requires to obtain a given <a class="link" href="NMClient.html#NMClient <div class="refsect2"> <a name="NMClient--wireless-enabled"></a><h3>The <code class="literal">“wireless-enabled”</code> property</h3> <pre class="programlisting"> “wireless-enabled” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether wireless is enabled.</p> <p>Flags: Read / Write</p> <p>Default value: FALSE</p> </div> @@ -2292,7 +2235,7 @@ the user requires to obtain a given <a class="link" href="NMClient.html#NMClient <div class="refsect2"> <a name="NMClient--wireless-hardware-enabled"></a><h3>The <code class="literal">“wireless-hardware-enabled”</code> property</h3> <pre class="programlisting"> “wireless-hardware-enabled” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the wireless hardware is enabled.</p> <p>Flags: Read</p> <p>Default value: TRUE</p> </div> @@ -2300,7 +2243,7 @@ the user requires to obtain a given <a class="link" href="NMClient.html#NMClient <div class="refsect2"> <a name="NMClient--wwan-enabled"></a><h3>The <code class="literal">“wwan-enabled”</code> property</h3> <pre class="programlisting"> “wwan-enabled” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether WWAN functionality is enabled.</p> <p>Flags: Read / Write</p> <p>Default value: FALSE</p> </div> @@ -2308,7 +2251,7 @@ the user requires to obtain a given <a class="link" href="NMClient.html#NMClient <div class="refsect2"> <a name="NMClient--wwan-hardware-enabled"></a><h3>The <code class="literal">“wwan-hardware-enabled”</code> property</h3> <pre class="programlisting"> “wwan-hardware-enabled” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the WWAN hardware is enabled.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -2321,6 +2264,34 @@ the user requires to obtain a given <a class="link" href="NMClient.html#NMClient user_function (<a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a> *client, <span class="type">GObject</span> *device, <span class="type">gpointer</span> user_data)</pre> +<p>Notifies that a <a class="link" href="NMDevice.html" title="NMDevice"><span class="type">NMDevice</span></a> is added.</p> +<div class="refsect3"> +<a name="id-1.3.2.12.2.5"></a><h4>Parameters</h4> +<div class="informaltable"><table width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>client</p></td> +<td class="parameter_description"><p>the client that received the signal</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>device</p></td> +<td class="parameter_description"><p> the new device. </p></td> +<td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> NMDevice]</span></td> +</tr> +<tr> +<td class="parameter_name"><p>user_data</p></td> +<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> <p>Flags: Run First</p> </div> <hr> @@ -2330,6 +2301,34 @@ user_function (<a class="link" href="NMClient.html" title="NMClient"><span class user_function (<a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a> *client, <span class="type">GObject</span> *device, <span class="type">gpointer</span> user_data)</pre> +<p>Notifies that a <a class="link" href="NMDevice.html" title="NMDevice"><span class="type">NMDevice</span></a> is removed.</p> +<div class="refsect3"> +<a name="id-1.3.2.12.3.5"></a><h4>Parameters</h4> +<div class="informaltable"><table width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>client</p></td> +<td class="parameter_description"><p>the client that received the signal</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>device</p></td> +<td class="parameter_description"><p> the removed device. </p></td> +<td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> NMDevice]</span></td> +</tr> +<tr> +<td class="parameter_name"><p>user_data</p></td> +<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> <p>Flags: Run First</p> </div> <hr> @@ -2340,12 +2339,44 @@ user_function (<a class="link" href="NMClient.html" title="NMClient"><span class <span class="type">guint</span> permission, <span class="type">guint</span> result, <span class="type">gpointer</span> user_data)</pre> +<p>Notifies that a permission has changed</p> +<div class="refsect3"> +<a name="id-1.3.2.12.4.5"></a><h4>Parameters</h4> +<div class="informaltable"><table width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>client</p></td> +<td class="parameter_description"><p>the client that received the signal</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>permission</p></td> +<td class="parameter_description"><p>a permission from <a class="link" href="NMClient.html#NMClientPermission" title="enum NMClientPermission"><span class="type">NMClientPermission</span></a></p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>result</p></td> +<td class="parameter_description"><p>the permission's result, one of <a class="link" href="NMClient.html#NMClientPermissionResult" title="enum NMClientPermissionResult"><span class="type">NMClientPermissionResult</span></a></p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>user_data</p></td> +<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> <p>Flags: Run First</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDHCP4Config.html b/docs/libnm-glib/html/NMDHCP4Config.html index c400cc6a..87c74fef 100644 --- a/docs/libnm-glib/html/NMDHCP4Config.html +++ b/docs/libnm-glib/html/NMDHCP4Config.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDHCP4Config</title> +<title>NMDHCP4Config: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMIP6Config.html" title="NMIP6Config"> <link rel="next" href="NMDHCP6Config.html" title="NMDHCP6Config"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -105,8 +105,6 @@ </div> <div class="refsect1"> <a name="NMDHCP4Config.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDHCP4Config.functions_details"></a><h2>Functions</h2> @@ -205,7 +203,6 @@ nm_dhcp4_config_get_one_option (<em class="parameter"><code><a class="link" href <a name="id-1.3.22.8.4.6"></a><h4>Returns</h4> <p> the configuration option's value. This is the internal string used by the configuration, and must not be modified.</p> -<p></p> </div> </div> </div> @@ -215,8 +212,6 @@ configuration, and must not be modified.</p> <a name="NM-DHCP4-CONFIG-OPTIONS:CAPS"></a><h3>NM_DHCP4_CONFIG_OPTIONS</h3> <pre class="programlisting">#define NM_DHCP4_CONFIG_OPTIONS "options" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -224,13 +219,13 @@ configuration, and must not be modified.</p> <div class="refsect2"> <a name="NMDHCP4Config--options"></a><h3>The <code class="literal">“options”</code> property</h3> <pre class="programlisting"> “options” <span class="type">GHashTable</span> *</pre> -<p></p> +<p>The <span class="type">GHashTable</span> containing options of the configuration.</p> +<p>Type: GLib.HashTable(utf8,GObject.Value)</p> <p>Flags: Read</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDHCP6Config.html b/docs/libnm-glib/html/NMDHCP6Config.html index c50a23df..7b322c5e 100644 --- a/docs/libnm-glib/html/NMDHCP6Config.html +++ b/docs/libnm-glib/html/NMDHCP6Config.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDHCP6Config</title> +<title>NMDHCP6Config: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDHCP4Config.html" title="NMDHCP4Config"> <link rel="next" href="NMObject.html" title="NMObject"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -105,8 +105,6 @@ </div> <div class="refsect1"> <a name="NMDHCP6Config.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDHCP6Config.functions_details"></a><h2>Functions</h2> @@ -205,7 +203,6 @@ nm_dhcp6_config_get_one_option (<em class="parameter"><code><a class="link" href <a name="id-1.3.23.8.4.6"></a><h4>Returns</h4> <p> the configuration option's value. This is the internal string used by the configuration, and must not be modified.</p> -<p></p> </div> </div> </div> @@ -215,8 +212,6 @@ configuration, and must not be modified.</p> <a name="NM-DHCP6-CONFIG-OPTIONS:CAPS"></a><h3>NM_DHCP6_CONFIG_OPTIONS</h3> <pre class="programlisting">#define NM_DHCP6_CONFIG_OPTIONS "options" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -224,13 +219,13 @@ configuration, and must not be modified.</p> <div class="refsect2"> <a name="NMDHCP6Config--options"></a><h3>The <code class="literal">“options”</code> property</h3> <pre class="programlisting"> “options” <span class="type">GHashTable</span> *</pre> -<p></p> +<p>The <span class="type">GHashTable</span> containing options of the configuration.</p> +<p>Type: GLib.HashTable(utf8,GObject.Value)</p> <p>Flags: Read</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDevice.html b/docs/libnm-glib/html/NMDevice.html index 2d5281c8..79f87a5d 100644 --- a/docs/libnm-glib/html/NMDevice.html +++ b/docs/libnm-glib/html/NMDevice.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDevice</title> +<title>NMDevice: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMActiveConnection.html" title="NMActiveConnection"> <link rel="next" href="NMDeviceEthernet.html" title="NMDeviceEthernet"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -634,8 +634,6 @@ </div> <div class="refsect1"> <a name="NMDevice.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDevice.functions_details"></a><h2>Functions</h2> @@ -647,9 +645,8 @@ nm_device_error_quark (<em class="parameter"><code><span class="type">void</span <div class="refsect3"> <a name="id-1.3.4.9.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDevice.html" title="NMDevice"><span class="type">NMDevice</span></a> errors.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -711,7 +708,6 @@ nm_device_get_iface (<em class="parameter"><code><a class="link" href="NMDevice. <a name="id-1.3.4.9.4.6"></a><h4>Returns</h4> <p> the interface of the device. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -740,7 +736,6 @@ when the device is in the ACTIVATED state.</p> <a name="id-1.3.4.9.5.6"></a><h4>Returns</h4> <p> the IP traffic interface of the device. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -767,7 +762,6 @@ nm_device_get_device_type (<em class="parameter"><code><a class="link" href="NMD <div class="refsect3"> <a name="id-1.3.4.9.6.6"></a><h4>Returns</h4> <p> the device type</p> -<p></p> </div> </div> <hr> @@ -796,7 +790,6 @@ nm_device_get_udi (<em class="parameter"><code><a class="link" href="NMDevice.ht <p> the Unique Device Identifier of the device. This identifier may be used to gather more information about the device from various operating system services like udev or sysfs.</p> -<p></p> </div> </div> <hr> @@ -824,7 +817,6 @@ nm_device_get_driver (<em class="parameter"><code><a class="link" href="NMDevice <a name="id-1.3.4.9.8.6"></a><h4>Returns</h4> <p> the driver of the device. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -852,7 +844,6 @@ nm_device_get_driver_version (<em class="parameter"><code><a class="link" href=" <a name="id-1.3.4.9.9.6"></a><h4>Returns</h4> <p> the version of the device driver. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -880,7 +871,6 @@ nm_device_get_firmware_version (<em class="parameter"><code><a class="link" href <a name="id-1.3.4.9.10.6"></a><h4>Returns</h4> <p> the firmware version of the device. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -910,9 +900,8 @@ nm_device_get_type_description (<em class="parameter"><code><a class="link" href <a name="id-1.3.4.9.11.6"></a><h4>Returns</h4> <p> the type description of the device. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -940,9 +929,8 @@ nm_device_get_hw_address (<em class="parameter"><code><a class="link" href="NMDe <a name="id-1.3.4.9.12.6"></a><h4>Returns</h4> <p> the current MAC of the device, or <code class="literal">NULL</code>. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -968,7 +956,6 @@ nm_device_get_capabilities (<em class="parameter"><code><a class="link" href="NM <div class="refsect3"> <a name="id-1.3.4.9.13.6"></a><h4>Returns</h4> <p> the capabilities</p> -<p></p> </div> </div> <hr> @@ -995,7 +982,6 @@ nm_device_get_managed (<em class="parameter"><code><a class="link" href="NMDevic <div class="refsect3"> <a name="id-1.3.4.9.14.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the device is managed by NetworkManager</p> -<p></p> </div> </div> <hr> @@ -1022,7 +1008,6 @@ nm_device_get_autoconnect (<em class="parameter"><code><a class="link" href="NMD <div class="refsect3"> <a name="id-1.3.4.9.15.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the device is allowed to be autoconnected</p> -<p></p> </div> </div> <hr> @@ -1081,7 +1066,6 @@ to be missing.</p> <a name="id-1.3.4.9.17.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if firmware required for the device's operation is likely to be missing.</p> -<p></p> </div> </div> <hr> @@ -1230,7 +1214,6 @@ nm_device_get_state (<em class="parameter"><code><a class="link" href="NMDevice. <div class="refsect3"> <a name="id-1.3.4.9.22.6"></a><h4>Returns</h4> <p> the current device state</p> -<p></p> </div> </div> <hr> @@ -1267,7 +1250,6 @@ the state (<em class="parameter"><code>reason</code></em> <div class="refsect3"> <a name="id-1.3.4.9.23.6"></a><h4>Returns</h4> <p> the current device state</p> -<p></p> </div> </div> <hr> @@ -1328,7 +1310,7 @@ containing <a href="NMRemoteConnection.html"><span class="type">NMRemoteConnecti the connection, and must not be modified. </p> <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> NMRemoteConnection]</span></p> </div> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> <hr> <div class="refsect2"> @@ -1359,9 +1341,8 @@ ports on a single physical port. (Eg, NPAR / SR-IOV.)</p> <p> the physical port ID of the device, or <code class="literal">NULL</code> if the port ID is unknown. This is the internal string used by the device and must not be modified.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -1387,9 +1368,8 @@ nm_device_get_mtu (<em class="parameter"><code><a class="link" href="NMDevice.ht <div class="refsect3"> <a name="id-1.3.4.9.27.6"></a><h4>Returns</h4> <p> the MTU of the device.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -1416,9 +1396,8 @@ nm_device_is_software (<em class="parameter"><code><a class="link" href="NMDevic <a name="id-1.3.4.9.28.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if <em class="parameter"><code>device</code></em> is a software device, <code class="literal">FALSE</code> if it is a hardware device.</p> -<p></p> </div> -<p class="since">Since 1.0</p> +<p class="since">Since: 1.0</p> </div> <hr> <div class="refsect2"> @@ -1445,7 +1424,6 @@ nm_device_get_product (<em class="parameter"><code><a class="link" href="NMDevic <a name="id-1.3.4.9.29.6"></a><h4>Returns</h4> <p> the product name of the device. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -1473,7 +1451,6 @@ nm_device_get_vendor (<em class="parameter"><code><a class="link" href="NMDevice <a name="id-1.3.4.9.30.6"></a><h4>Returns</h4> <p> the vendor name of the device. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -1503,9 +1480,8 @@ nm_device_get_description (<em class="parameter"><code><a class="link" href="NMD <p> a description of <em class="parameter"><code>device</code></em> . If either the vendor or the product name is unknown, this returns the interface name.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -1544,7 +1520,7 @@ devices in <em class="parameter"><code>devices</code></em> <p> the device names. </p> <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1]</span></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -1553,8 +1529,6 @@ devices in <em class="parameter"><code>devices</code></em> <span class="c_punctuation">(</span>*NMDeviceCallbackFn<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="NMDevice.html" title="NMDevice"><span class="type">NMDevice</span></a> *device</code></em>, <em class="parameter"><code><span class="type">GError</span> *error</code></em>, <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -1633,7 +1607,7 @@ operation completes. </p></td> </tbody> </table></div> </div> -<p class="since">Since 1.0</p> +<p class="since">Since: 1.0</p> </div> <hr> <div class="refsect2"> @@ -1726,7 +1700,6 @@ against</p></td> <a name="id-1.3.4.9.37.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the connection may be activated with this device, <code class="literal">FALSE</code> if is incompatible with the device's capabilities and characteristics.</p> -<p></p> </div> </div> <hr> @@ -1780,7 +1753,6 @@ against</p></td> <a name="id-1.3.4.9.38.7"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the connection may be activated with this device, <code class="literal">FALSE</code> if is incompatible with the device's capabilities and characteristics.</p> -<p></p> </div> </div> <hr> @@ -1810,9 +1782,8 @@ that can be used on <em class="parameter"><code>device</code></em> <a name="id-1.3.4.9.39.6"></a><h4>Returns</h4> <p> <em class="parameter"><code>device</code></em> 's associated <a href="https://developer.gnome.org/libnm-util/0.9/NMSetting.html"><span class="type">NMSetting</span></a> type</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -1822,8 +1793,6 @@ that can be used on <em class="parameter"><code>device</code></em> <em class="parameter"><code><span class="type">GError</span> *error</code></em>, <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre> <div class="warning"><p><code class="literal">NMDeviceDeactivateFn</code> is deprecated and should not be used in newly-written code.</p></div> -<p> -</p> </div> </div> <div class="refsect1"> @@ -1863,192 +1832,144 @@ that can be used on <em class="parameter"><code>device</code></em> <a name="NM-DEVICE-ERROR:CAPS"></a><h3>NM_DEVICE_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_ERROR nm_device_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-DEVICE-TYPE:CAPS"></a><h3>NM_DEVICE_DEVICE_TYPE</h3> <pre class="programlisting">#define NM_DEVICE_DEVICE_TYPE "device-type" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-UDI:CAPS"></a><h3>NM_DEVICE_UDI</h3> <pre class="programlisting">#define NM_DEVICE_UDI "udi" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-INTERFACE:CAPS"></a><h3>NM_DEVICE_INTERFACE</h3> <pre class="programlisting">#define NM_DEVICE_INTERFACE "interface" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-IP-INTERFACE:CAPS"></a><h3>NM_DEVICE_IP_INTERFACE</h3> <pre class="programlisting">#define NM_DEVICE_IP_INTERFACE "ip-interface" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-DRIVER:CAPS"></a><h3>NM_DEVICE_DRIVER</h3> <pre class="programlisting">#define NM_DEVICE_DRIVER "driver" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-DRIVER-VERSION:CAPS"></a><h3>NM_DEVICE_DRIVER_VERSION</h3> <pre class="programlisting">#define NM_DEVICE_DRIVER_VERSION "driver-version" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-FIRMWARE-VERSION:CAPS"></a><h3>NM_DEVICE_FIRMWARE_VERSION</h3> <pre class="programlisting">#define NM_DEVICE_FIRMWARE_VERSION "firmware-version" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-CAPABILITIES:CAPS"></a><h3>NM_DEVICE_CAPABILITIES</h3> <pre class="programlisting">#define NM_DEVICE_CAPABILITIES "capabilities" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-MANAGED:CAPS"></a><h3>NM_DEVICE_MANAGED</h3> <pre class="programlisting">#define NM_DEVICE_MANAGED "managed" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-AUTOCONNECT:CAPS"></a><h3>NM_DEVICE_AUTOCONNECT</h3> <pre class="programlisting">#define NM_DEVICE_AUTOCONNECT "autoconnect" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-FIRMWARE-MISSING:CAPS"></a><h3>NM_DEVICE_FIRMWARE_MISSING</h3> <pre class="programlisting">#define NM_DEVICE_FIRMWARE_MISSING "firmware-missing" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-IP4-CONFIG:CAPS"></a><h3>NM_DEVICE_IP4_CONFIG</h3> <pre class="programlisting">#define NM_DEVICE_IP4_CONFIG "ip4-config" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-DHCP4-CONFIG:CAPS"></a><h3>NM_DEVICE_DHCP4_CONFIG</h3> <pre class="programlisting">#define NM_DEVICE_DHCP4_CONFIG "dhcp4-config" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-IP6-CONFIG:CAPS"></a><h3>NM_DEVICE_IP6_CONFIG</h3> <pre class="programlisting">#define NM_DEVICE_IP6_CONFIG "ip6-config" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-DHCP6-CONFIG:CAPS"></a><h3>NM_DEVICE_DHCP6_CONFIG</h3> <pre class="programlisting">#define NM_DEVICE_DHCP6_CONFIG "dhcp6-config" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-STATE:CAPS"></a><h3>NM_DEVICE_STATE</h3> <pre class="programlisting">#define NM_DEVICE_STATE "state" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-STATE-REASON:CAPS"></a><h3>NM_DEVICE_STATE_REASON</h3> <pre class="programlisting">#define NM_DEVICE_STATE_REASON "state-reason" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-ACTIVE-CONNECTION:CAPS"></a><h3>NM_DEVICE_ACTIVE_CONNECTION</h3> <pre class="programlisting">#define NM_DEVICE_ACTIVE_CONNECTION "active-connection" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-AVAILABLE-CONNECTIONS:CAPS"></a><h3>NM_DEVICE_AVAILABLE_CONNECTIONS</h3> <pre class="programlisting">#define NM_DEVICE_AVAILABLE_CONNECTIONS "available-connections" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-VENDOR:CAPS"></a><h3>NM_DEVICE_VENDOR</h3> <pre class="programlisting">#define NM_DEVICE_VENDOR "vendor" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-PRODUCT:CAPS"></a><h3>NM_DEVICE_PRODUCT</h3> <pre class="programlisting">#define NM_DEVICE_PRODUCT "product" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-PHYSICAL-PORT-ID:CAPS"></a><h3>NM_DEVICE_PHYSICAL_PORT_ID</h3> <pre class="programlisting">#define NM_DEVICE_PHYSICAL_PORT_ID "physical-port-id" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-MTU:CAPS"></a><h3>NM_DEVICE_MTU</h3> <pre class="programlisting">#define NM_DEVICE_MTU "mtu" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -2056,14 +1977,14 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--active-connection"></a><h3>The <code class="literal">“active-connection”</code> property</h3> <pre class="programlisting"> “active-connection” <a class="link" href="NMActiveConnection.html" title="NMActiveConnection"><span class="type">NMActiveConnection</span></a> *</pre> -<p></p> +<p>The <a class="link" href="NMActiveConnection.html" title="NMActiveConnection"><span class="type">NMActiveConnection</span></a> object that "owns" this device during activation.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMDevice--autoconnect"></a><h3>The <code class="literal">“autoconnect”</code> property</h3> <pre class="programlisting"> “autoconnect” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the device can auto-activate a connection.</p> <p>Flags: Read / Write</p> <p>Default value: TRUE</p> </div> @@ -2071,15 +1992,15 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--available-connections"></a><h3>The <code class="literal">“available-connections”</code> property</h3> <pre class="programlisting"> “available-connections” <span class="type">NMObjectArray</span> *</pre> -<p></p> +<p>The available connections (<a class="link" href="NMRemoteConnection.html" title="NMRemoteConnection"><span class="type">NMRemoteConnection</span></a>) of the device</p> <p>Flags: Read</p> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> <hr> <div class="refsect2"> <a name="NMDevice--capabilities"></a><h3>The <code class="literal">“capabilities”</code> property</h3> <pre class="programlisting"> “capabilities” <span class="type">guint</span></pre> -<p></p> +<p>The capabilities of the device.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -2087,7 +2008,7 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--device-type"></a><h3>The <code class="literal">“device-type”</code> property</h3> <pre class="programlisting"> “device-type” <span class="type">guint</span></pre> -<p></p> +<p>The numeric type of the device.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -2095,21 +2016,21 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--dhcp4-config"></a><h3>The <code class="literal">“dhcp4-config”</code> property</h3> <pre class="programlisting"> “dhcp4-config” <a class="link" href="NMDHCP4Config.html" title="NMDHCP4Config"><span class="type">NMDHCP4Config</span></a> *</pre> -<p></p> +<p>The <a class="link" href="NMDHCP4Config.html" title="NMDHCP4Config"><span class="type">NMDHCP4Config</span></a> of the device.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMDevice--dhcp6-config"></a><h3>The <code class="literal">“dhcp6-config”</code> property</h3> <pre class="programlisting"> “dhcp6-config” <a class="link" href="NMDHCP6Config.html" title="NMDHCP6Config"><span class="type">NMDHCP6Config</span></a> *</pre> -<p></p> +<p>The <a class="link" href="NMDHCP6Config.html" title="NMDHCP6Config"><span class="type">NMDHCP6Config</span></a> of the device.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMDevice--driver"></a><h3>The <code class="literal">“driver”</code> property</h3> <pre class="programlisting"> “driver” <span class="type">gchar</span> *</pre> -<p></p> +<p>The driver of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -2117,7 +2038,7 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--driver-version"></a><h3>The <code class="literal">“driver-version”</code> property</h3> <pre class="programlisting"> “driver-version” <span class="type">gchar</span> *</pre> -<p></p> +<p>The version of the device driver.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -2125,7 +2046,8 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--firmware-missing"></a><h3>The <code class="literal">“firmware-missing”</code> property</h3> <pre class="programlisting"> “firmware-missing” <span class="type">gboolean</span></pre> -<p></p> +<p>When <code class="literal">TRUE</code> indicates the device is likely missing firmware required +for its operation.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -2133,7 +2055,7 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--firmware-version"></a><h3>The <code class="literal">“firmware-version”</code> property</h3> <pre class="programlisting"> “firmware-version” <span class="type">gchar</span> *</pre> -<p></p> +<p>The firmware version of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -2141,7 +2063,7 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--interface"></a><h3>The <code class="literal">“interface”</code> property</h3> <pre class="programlisting"> “interface” <span class="type">gchar</span> *</pre> -<p></p> +<p>The interface of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -2149,7 +2071,8 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--ip-interface"></a><h3>The <code class="literal">“ip-interface”</code> property</h3> <pre class="programlisting"> “ip-interface” <span class="type">gchar</span> *</pre> -<p></p> +<p>The IP interface of the device which should be used for all IP-related +operations like addressing and routing.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -2157,21 +2080,21 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--ip4-config"></a><h3>The <code class="literal">“ip4-config”</code> property</h3> <pre class="programlisting"> “ip4-config” <a class="link" href="NMIP4Config.html" title="NMIP4Config"><span class="type">NMIP4Config</span></a> *</pre> -<p></p> +<p>The <a class="link" href="NMIP4Config.html" title="NMIP4Config"><span class="type">NMIP4Config</span></a> of the device.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMDevice--ip6-config"></a><h3>The <code class="literal">“ip6-config”</code> property</h3> <pre class="programlisting"> “ip6-config” <a class="link" href="NMIP6Config.html" title="NMIP6Config"><span class="type">NMIP6Config</span></a> *</pre> -<p></p> +<p>The <a class="link" href="NMIP6Config.html" title="NMIP6Config"><span class="type">NMIP6Config</span></a> of the device.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMDevice--managed"></a><h3>The <code class="literal">“managed”</code> property</h3> <pre class="programlisting"> “managed” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the device is managed by NetworkManager.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -2179,25 +2102,26 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--mtu"></a><h3>The <code class="literal">“mtu”</code> property</h3> <pre class="programlisting"> “mtu” <span class="type">guint</span></pre> -<p></p> +<p>The MTU of the device.</p> <p>Flags: Read</p> <p>Default value: 1500</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMDevice--physical-port-id"></a><h3>The <code class="literal">“physical-port-id”</code> property</h3> <pre class="programlisting"> “physical-port-id” <span class="type">gchar</span> *</pre> -<p></p> +<p>The physical port ID of the device. (See +<a class="link" href="NMDevice.html#nm-device-get-physical-port-id" title="nm_device_get_physical_port_id ()"><code class="function">nm_device_get_physical_port_id()</code></a>.)</p> <p>Flags: Read</p> <p>Default value: NULL</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMDevice--product"></a><h3>The <code class="literal">“product”</code> property</h3> <pre class="programlisting"> “product” <span class="type">gchar</span> *</pre> -<p></p> +<p>The product string of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -2205,7 +2129,7 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--state"></a><h3>The <code class="literal">“state”</code> property</h3> <pre class="programlisting"> “state” <span class="type">guint</span></pre> -<p></p> +<p>The state of the device.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -2213,14 +2137,19 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--state-reason"></a><h3>The <code class="literal">“state-reason”</code> property</h3> <pre class="programlisting"> “state-reason” <span class="type">GValueArray_guint+guint_*</span></pre> -<p></p> +<p>The state and reason of the device.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMDevice--udi"></a><h3>The <code class="literal">“udi”</code> property</h3> <pre class="programlisting"> “udi” <span class="type">gchar</span> *</pre> -<p></p> +<p>An operating-system specific device hardware identifier; this is not +unique to a specific hardware device across reboots or hotplugs. It +is an opaque string which for some device types (Bluetooth, Modem) +contains an identifier provided by the underlying hardware service daemon +such as Bluez or ModemManager, and clients can use this property to +request more information about the device from those services.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -2228,7 +2157,7 @@ that can be used on <em class="parameter"><code>device</code></em> <div class="refsect2"> <a name="NMDevice--vendor"></a><h3>The <code class="literal">“vendor”</code> property</h3> <pre class="programlisting"> “vendor” <span class="type">gchar</span> *</pre> -<p></p> +<p>The vendor string of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -2243,12 +2172,49 @@ user_function (<a class="link" href="NMDevice.html" title="NMDevice"><span class <span class="type">guint</span> old_state, <span class="type">guint</span> reason, <span class="type">gpointer</span> user_data)</pre> +<p>Notifies the state change of a <a class="link" href="NMDevice.html" title="NMDevice"><span class="type">NMDevice</span></a>.</p> +<div class="refsect3"> +<a name="id-1.3.4.12.2.5"></a><h4>Parameters</h4> +<div class="informaltable"><table width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>device</p></td> +<td class="parameter_description"><p>the device object that received the signal</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>new_state</p></td> +<td class="parameter_description"><p>the new state of the device</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>old_state</p></td> +<td class="parameter_description"><p>the previous state of the device</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>reason</p></td> +<td class="parameter_description"><p>the reason describing the state change</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>user_data</p></td> +<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> <p>Flags: Run First</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceAdsl.html b/docs/libnm-glib/html/NMDeviceAdsl.html index 404fb121..3f108475 100644 --- a/docs/libnm-glib/html/NMDeviceAdsl.html +++ b/docs/libnm-glib/html/NMDeviceAdsl.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceAdsl</title> +<title>NMDeviceAdsl: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceWimax.html" title="NMDeviceWimax"> <link rel="next" href="NMDeviceBond.html" title="NMDeviceBond"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -116,8 +116,6 @@ </div> <div class="refsect1"> <a name="NMDeviceAdsl.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceAdsl.functions_details"></a><h2>Functions</h2> @@ -129,7 +127,6 @@ nm_device_adsl_error_quark (<em class="parameter"><code><span class="type">void< <div class="refsect3"> <a name="id-1.3.10.8.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceAdsl.html" title="NMDeviceAdsl"><span class="type">NMDeviceAdsl</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -191,7 +188,6 @@ nm_device_adsl_get_carrier (<em class="parameter"><code><a class="link" href="NM <div class="refsect3"> <a name="id-1.3.10.8.4.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the device has carrier</p> -<p></p> </div> </div> </div> @@ -238,16 +234,12 @@ nm_device_adsl_get_carrier (<em class="parameter"><code><a class="link" href="NM <a name="NM-DEVICE-ADSL-ERROR:CAPS"></a><h3>NM_DEVICE_ADSL_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_ADSL_ERROR nm_device_adsl_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-ADSL-CARRIER:CAPS"></a><h3>NM_DEVICE_ADSL_CARRIER</h3> <pre class="programlisting">#define NM_DEVICE_ADSL_CARRIER "carrier" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -255,14 +247,13 @@ nm_device_adsl_get_carrier (<em class="parameter"><code><a class="link" href="NM <div class="refsect2"> <a name="NMDeviceAdsl--carrier"></a><h3>The <code class="literal">“carrier”</code> property</h3> <pre class="programlisting"> “carrier” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the device has carrier.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceBond.html b/docs/libnm-glib/html/NMDeviceBond.html index c79364a9..7659084c 100644 --- a/docs/libnm-glib/html/NMDeviceBond.html +++ b/docs/libnm-glib/html/NMDeviceBond.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceBond</title> +<title>NMDeviceBond: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceAdsl.html" title="NMDeviceAdsl"> <link rel="next" href="NMDeviceBridge.html" title="NMDeviceBridge"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -152,8 +152,6 @@ </div> <div class="refsect1"> <a name="NMDeviceBond.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceBond.functions_details"></a><h2>Functions</h2> @@ -165,7 +163,6 @@ nm_device_bond_error_quark (<em class="parameter"><code><span class="type">void< <div class="refsect3"> <a name="id-1.3.11.8.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceBond.html" title="NMDeviceBond"><span class="type">NMDeviceBond</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -228,7 +225,6 @@ nm_device_bond_get_hw_address (<em class="parameter"><code><a class="link" href= <a name="id-1.3.11.8.4.6"></a><h4>Returns</h4> <p> the hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -255,7 +251,6 @@ nm_device_bond_get_carrier (<em class="parameter"><code><a class="link" href="NM <div class="refsect3"> <a name="id-1.3.11.8.5.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the device has carrier</p> -<p></p> </div> </div> <hr> @@ -288,7 +283,7 @@ nm_device_bond_get_slaves (<em class="parameter"><code><a class="link" href="NMD copy used by the device, and must not be modified. </p> <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> NMDevice]</span></p> </div> -<p class="since">Since 0.9.6.4</p> +<p class="since">Since: 0.9.6.4</p> </div> </div> <div class="refsect1"> @@ -341,32 +336,24 @@ copy used by the device, and must not be modified. </p> <a name="NM-DEVICE-BOND-ERROR:CAPS"></a><h3>NM_DEVICE_BOND_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_BOND_ERROR nm_device_bond_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-BOND-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_BOND_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_BOND_HW_ADDRESS "hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-BOND-CARRIER:CAPS"></a><h3>NM_DEVICE_BOND_CARRIER</h3> <pre class="programlisting">#define NM_DEVICE_BOND_CARRIER "carrier" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-BOND-SLAVES:CAPS"></a><h3>NM_DEVICE_BOND_SLAVES</h3> <pre class="programlisting">#define NM_DEVICE_BOND_SLAVES "slaves" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -374,7 +361,7 @@ copy used by the device, and must not be modified. </p> <div class="refsect2"> <a name="NMDeviceBond--carrier"></a><h3>The <code class="literal">“carrier”</code> property</h3> <pre class="programlisting"> “carrier” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the device has carrier.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -382,7 +369,7 @@ copy used by the device, and must not be modified. </p> <div class="refsect2"> <a name="NMDeviceBond--hw-address"></a><h3>The <code class="literal">“hw-address”</code> property</h3> <pre class="programlisting"> “hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The hardware (MAC) address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -390,14 +377,13 @@ copy used by the device, and must not be modified. </p> <div class="refsect2"> <a name="NMDeviceBond--slaves"></a><h3>The <code class="literal">“slaves”</code> property</h3> <pre class="programlisting"> “slaves” <span class="type">NMObjectArray</span> *</pre> -<p></p> +<p>The devices (<a class="link" href="NMDevice.html" title="NMDevice"><span class="type">NMDevice</span></a>) slaved to the bond device.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceBridge.html b/docs/libnm-glib/html/NMDeviceBridge.html index 192be733..f0af6d6a 100644 --- a/docs/libnm-glib/html/NMDeviceBridge.html +++ b/docs/libnm-glib/html/NMDeviceBridge.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceBridge</title> +<title>NMDeviceBridge: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceBond.html" title="NMDeviceBond"> <link rel="next" href="NMDeviceTeam.html" title="NMDeviceTeam"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -152,8 +152,6 @@ </div> <div class="refsect1"> <a name="NMDeviceBridge.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceBridge.functions_details"></a><h2>Functions</h2> @@ -165,9 +163,8 @@ nm_device_bridge_error_quark (<em class="parameter"><code><span class="type">voi <div class="refsect3"> <a name="id-1.3.12.8.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceBridge.html" title="NMDeviceBridge"><span class="type">NMDeviceBridge</span></a> errors.</p> -<p></p> </div> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> <hr> <div class="refsect2"> @@ -203,7 +200,7 @@ nm_device_bridge_new (<em class="parameter"><code><a href="/usr/share/gtk-doc/ht <p> a new device. </p> <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p> </div> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> <hr> <div class="refsect2"> @@ -230,9 +227,8 @@ nm_device_bridge_get_hw_address (<em class="parameter"><code><a class="link" hre <a name="id-1.3.12.8.4.6"></a><h4>Returns</h4> <p> the hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> <hr> <div class="refsect2"> @@ -258,9 +254,8 @@ nm_device_bridge_get_carrier (<em class="parameter"><code><a class="link" href=" <div class="refsect3"> <a name="id-1.3.12.8.5.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the device has carrier</p> -<p></p> </div> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> <hr> <div class="refsect2"> @@ -292,7 +287,7 @@ nm_device_bridge_get_slaves (<em class="parameter"><code><a class="link" href="N copy used by the device, and must not be modified. </p> <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> NMDevice]</span></p> </div> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> </div> <div class="refsect1"> @@ -339,39 +334,31 @@ copy used by the device, and must not be modified. </p> </tbody> </table></div> </div> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-BRIDGE-ERROR:CAPS"></a><h3>NM_DEVICE_BRIDGE_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_BRIDGE_ERROR nm_device_bridge_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-BRIDGE-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_BRIDGE_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_BRIDGE_HW_ADDRESS "hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-BRIDGE-CARRIER:CAPS"></a><h3>NM_DEVICE_BRIDGE_CARRIER</h3> <pre class="programlisting">#define NM_DEVICE_BRIDGE_CARRIER "carrier" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-BRIDGE-SLAVES:CAPS"></a><h3>NM_DEVICE_BRIDGE_SLAVES</h3> <pre class="programlisting">#define NM_DEVICE_BRIDGE_SLAVES "slaves" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -379,32 +366,31 @@ copy used by the device, and must not be modified. </p> <div class="refsect2"> <a name="NMDeviceBridge--carrier"></a><h3>The <code class="literal">“carrier”</code> property</h3> <pre class="programlisting"> “carrier” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the device has carrier.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> <hr> <div class="refsect2"> <a name="NMDeviceBridge--hw-address"></a><h3>The <code class="literal">“hw-address”</code> property</h3> <pre class="programlisting"> “hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The hardware (MAC) address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> <hr> <div class="refsect2"> <a name="NMDeviceBridge--slaves"></a><h3>The <code class="literal">“slaves”</code> property</h3> <pre class="programlisting"> “slaves” <span class="type">NMObjectArray</span> *</pre> -<p></p> +<p>The devices (<a class="link" href="NMDevice.html" title="NMDevice"><span class="type">NMDevice</span></a>) slaved to the bridge device.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceBt.html b/docs/libnm-glib/html/NMDeviceBt.html index 816f671d..8a0df6b0 100644 --- a/docs/libnm-glib/html/NMDeviceBt.html +++ b/docs/libnm-glib/html/NMDeviceBt.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceBt</title> +<title>NMDeviceBt: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceModem.html" title="NMDeviceModem"> <link rel="next" href="NMDeviceWimax.html" title="NMDeviceWimax"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -152,8 +152,6 @@ </div> <div class="refsect1"> <a name="NMDeviceBt.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceBt.functions_details"></a><h2>Functions</h2> @@ -165,7 +163,6 @@ nm_device_bt_error_quark (<em class="parameter"><code><span class="type">void</s <div class="refsect3"> <a name="id-1.3.8.8.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceBt.html" title="NMDeviceBt"><span class="type">NMDeviceBt</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -228,7 +225,6 @@ nm_device_bt_get_hw_address (<em class="parameter"><code><a class="link" href="N <a name="id-1.3.8.8.4.6"></a><h4>Returns</h4> <p> the hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -255,7 +251,6 @@ nm_device_bt_get_name (<em class="parameter"><code><a class="link" href="NMDevic <div class="refsect3"> <a name="id-1.3.8.8.5.6"></a><h4>Returns</h4> <p> the name of the device</p> -<p></p> </div> </div> <hr> @@ -282,7 +277,6 @@ nm_device_bt_get_capabilities (<em class="parameter"><code><a class="link" href= <div class="refsect3"> <a name="id-1.3.8.8.6.6"></a><h4>Returns</h4> <p> a combination of <a href="https://developer.gnome.org/libnm-util/0.9/libnm-util-NetworkManager.html#NMBluetoothCapabilities"><span class="type">NMBluetoothCapabilities</span></a></p> -<p></p> </div> </div> </div> @@ -350,32 +344,24 @@ nm_device_bt_get_capabilities (<em class="parameter"><code><a class="link" href= <a name="NM-DEVICE-BT-ERROR:CAPS"></a><h3>NM_DEVICE_BT_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_BT_ERROR nm_device_bt_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-BT-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_BT_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_BT_HW_ADDRESS "hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-BT-NAME:CAPS"></a><h3>NM_DEVICE_BT_NAME</h3> <pre class="programlisting">#define NM_DEVICE_BT_NAME "name" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-BT-CAPABILITIES:CAPS"></a><h3>NM_DEVICE_BT_CAPABILITIES</h3> <pre class="programlisting">#define NM_DEVICE_BT_CAPABILITIES "bt-capabilities" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -383,7 +369,7 @@ nm_device_bt_get_capabilities (<em class="parameter"><code><a class="link" href= <div class="refsect2"> <a name="NMDeviceBt--bt-capabilities"></a><h3>The <code class="literal">“bt-capabilities”</code> property</h3> <pre class="programlisting"> “bt-capabilities” <span class="type">guint</span></pre> -<p></p> +<p>The device's bluetooth capabilities, a combination of <a href="https://developer.gnome.org/libnm-util/0.9/libnm-util-NetworkManager.html#NMBluetoothCapabilities"><span class="type">NMBluetoothCapabilities</span></a>.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -391,7 +377,7 @@ nm_device_bt_get_capabilities (<em class="parameter"><code><a class="link" href= <div class="refsect2"> <a name="NMDeviceBt--hw-address"></a><h3>The <code class="literal">“hw-address”</code> property</h3> <pre class="programlisting"> “hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The hardware (MAC) address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -399,14 +385,13 @@ nm_device_bt_get_capabilities (<em class="parameter"><code><a class="link" href= <div class="refsect2"> <a name="NMDeviceBt--name"></a><h3>The <code class="literal">“name”</code> property</h3> <pre class="programlisting"> “name” <span class="type">gchar</span> *</pre> -<p></p> +<p>The name of the bluetooth device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceEthernet.html b/docs/libnm-glib/html/NMDeviceEthernet.html index 86f4898c..655a0441 100644 --- a/docs/libnm-glib/html/NMDeviceEthernet.html +++ b/docs/libnm-glib/html/NMDeviceEthernet.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceEthernet</title> +<title>NMDeviceEthernet: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDevice.html" title="NMDevice"> <link rel="next" href="NMDeviceWifi.html" title="NMDeviceWifi"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -169,8 +169,6 @@ </div> <div class="refsect1"> <a name="NMDeviceEthernet.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceEthernet.functions_details"></a><h2>Functions</h2> @@ -182,7 +180,6 @@ nm_device_ethernet_error_quark (<em class="parameter"><code><span class="type">v <div class="refsect3"> <a name="id-1.3.5.8.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceEthernet.html" title="NMDeviceEthernet"><span class="type">NMDeviceEthernet</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -245,7 +242,6 @@ nm_device_ethernet_get_hw_address (<em class="parameter"><code><a class="link" h <a name="id-1.3.5.8.4.6"></a><h4>Returns</h4> <p> the active hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -274,7 +270,6 @@ nm_device_ethernet_get_permanent_hw_address <a name="id-1.3.5.8.5.6"></a><h4>Returns</h4> <p> the permanent hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -301,7 +296,6 @@ nm_device_ethernet_get_speed (<em class="parameter"><code><a class="link" href=" <div class="refsect3"> <a name="id-1.3.5.8.6.6"></a><h4>Returns</h4> <p> the speed of the device</p> -<p></p> </div> </div> <hr> @@ -328,7 +322,6 @@ nm_device_ethernet_get_carrier (<em class="parameter"><code><a class="link" href <div class="refsect3"> <a name="id-1.3.5.8.7.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the device has carrier</p> -<p></p> </div> </div> </div> @@ -389,40 +382,30 @@ nm_device_ethernet_get_carrier (<em class="parameter"><code><a class="link" href <a name="NM-DEVICE-ETHERNET-ERROR:CAPS"></a><h3>NM_DEVICE_ETHERNET_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_ETHERNET_ERROR nm_device_ethernet_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-ETHERNET-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_ETHERNET_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_ETHERNET_HW_ADDRESS "hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-ETHERNET-PERMANENT-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_ETHERNET_PERMANENT_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_ETHERNET_PERMANENT_HW_ADDRESS "perm-hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-ETHERNET-SPEED:CAPS"></a><h3>NM_DEVICE_ETHERNET_SPEED</h3> <pre class="programlisting">#define NM_DEVICE_ETHERNET_SPEED "speed" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-ETHERNET-CARRIER:CAPS"></a><h3>NM_DEVICE_ETHERNET_CARRIER</h3> <pre class="programlisting">#define NM_DEVICE_ETHERNET_CARRIER "carrier" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -430,7 +413,7 @@ nm_device_ethernet_get_carrier (<em class="parameter"><code><a class="link" href <div class="refsect2"> <a name="NMDeviceEthernet--carrier"></a><h3>The <code class="literal">“carrier”</code> property</h3> <pre class="programlisting"> “carrier” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the device has carrier.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -438,7 +421,7 @@ nm_device_ethernet_get_carrier (<em class="parameter"><code><a class="link" href <div class="refsect2"> <a name="NMDeviceEthernet--hw-address"></a><h3>The <code class="literal">“hw-address”</code> property</h3> <pre class="programlisting"> “hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The active hardware (MAC) address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -446,7 +429,7 @@ nm_device_ethernet_get_carrier (<em class="parameter"><code><a class="link" href <div class="refsect2"> <a name="NMDeviceEthernet--perm-hw-address"></a><h3>The <code class="literal">“perm-hw-address”</code> property</h3> <pre class="programlisting"> “perm-hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The permanent hardware (MAC) address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -454,14 +437,13 @@ nm_device_ethernet_get_carrier (<em class="parameter"><code><a class="link" href <div class="refsect2"> <a name="NMDeviceEthernet--speed"></a><h3>The <code class="literal">“speed”</code> property</h3> <pre class="programlisting"> “speed” <span class="type">guint</span></pre> -<p></p> +<p>The speed of the device.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceGeneric.html b/docs/libnm-glib/html/NMDeviceGeneric.html index e663d8d7..58b7c9ca 100644 --- a/docs/libnm-glib/html/NMDeviceGeneric.html +++ b/docs/libnm-glib/html/NMDeviceGeneric.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceGeneric</title> +<title>NMDeviceGeneric: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceTeam.html" title="NMDeviceTeam"> <link rel="next" href="NMDeviceInfiniband.html" title="NMDeviceInfiniband"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -128,8 +128,6 @@ </div> <div class="refsect1"> <a name="NMDeviceGeneric.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceGeneric.functions_details"></a><h2>Functions</h2> @@ -141,9 +139,8 @@ nm_device_generic_error_quark (<em class="parameter"><code><span class="type">vo <div class="refsect3"> <a name="id-1.3.14.8.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceGeneric.html" title="NMDeviceGeneric"><span class="type">NMDeviceGeneric</span></a> errors.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -179,7 +176,7 @@ nm_device_generic_new (<em class="parameter"><code><a href="/usr/share/gtk-doc/h <p> a new device. </p> <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -206,9 +203,8 @@ nm_device_generic_get_hw_address (<em class="parameter"><code><a class="link" hr <a name="id-1.3.14.8.4.6"></a><h4>Returns</h4> <p> the hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> </div> <div class="refsect1"> @@ -254,24 +250,18 @@ device, and must not be modified.</p> <a name="NM-DEVICE-GENERIC-ERROR:CAPS"></a><h3>NM_DEVICE_GENERIC_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_GENERIC_ERROR nm_device_generic_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-GENERIC-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_GENERIC_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_GENERIC_HW_ADDRESS "hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-GENERIC-TYPE-DESCRIPTION:CAPS"></a><h3>NM_DEVICE_GENERIC_TYPE_DESCRIPTION</h3> <pre class="programlisting">#define NM_DEVICE_GENERIC_TYPE_DESCRIPTION "type-description" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -279,7 +269,7 @@ device, and must not be modified.</p> <div class="refsect2"> <a name="NMDeviceGeneric--hw-address"></a><h3>The <code class="literal">“hw-address”</code> property</h3> <pre class="programlisting"> “hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The hardware address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -287,14 +277,14 @@ device, and must not be modified.</p> <div class="refsect2"> <a name="NMDeviceGeneric--type-description"></a><h3>The <code class="literal">“type-description”</code> property</h3> <pre class="programlisting"> “type-description” <span class="type">gchar</span> *</pre> -<p></p> +<p>A description of the specific type of device this is, or <code class="literal">NULL</code> +if not known.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceInfiniband.html b/docs/libnm-glib/html/NMDeviceInfiniband.html index 48b6c887..bb9523d5 100644 --- a/docs/libnm-glib/html/NMDeviceInfiniband.html +++ b/docs/libnm-glib/html/NMDeviceInfiniband.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceInfiniband</title> +<title>NMDeviceInfiniband: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceGeneric.html" title="NMDeviceGeneric"> <link rel="next" href="NMDeviceVlan.html" title="NMDeviceVlan"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -135,8 +135,6 @@ </div> <div class="refsect1"> <a name="NMDeviceInfiniband.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceInfiniband.functions_details"></a><h2>Functions</h2> @@ -148,7 +146,6 @@ nm_device_infiniband_error_quark (<em class="parameter"><code><span class="type" <div class="refsect3"> <a name="id-1.3.15.8.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceInfiniband.html" title="NMDeviceInfiniband"><span class="type">NMDeviceInfiniband</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -211,7 +208,6 @@ nm_device_infiniband_get_hw_address (<em class="parameter"><code><a class="link" <a name="id-1.3.15.8.4.6"></a><h4>Returns</h4> <p> the hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -238,7 +234,6 @@ nm_device_infiniband_get_carrier (<em class="parameter"><code><a class="link" hr <div class="refsect3"> <a name="id-1.3.15.8.5.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the device has carrier</p> -<p></p> </div> </div> </div> @@ -299,24 +294,18 @@ nm_device_infiniband_get_carrier (<em class="parameter"><code><a class="link" hr <a name="NM-DEVICE-INFINIBAND-ERROR:CAPS"></a><h3>NM_DEVICE_INFINIBAND_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_INFINIBAND_ERROR nm_device_infiniband_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-INFINIBAND-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_INFINIBAND_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_INFINIBAND_HW_ADDRESS "hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-INFINIBAND-CARRIER:CAPS"></a><h3>NM_DEVICE_INFINIBAND_CARRIER</h3> <pre class="programlisting">#define NM_DEVICE_INFINIBAND_CARRIER "carrier" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -324,7 +313,7 @@ nm_device_infiniband_get_carrier (<em class="parameter"><code><a class="link" hr <div class="refsect2"> <a name="NMDeviceInfiniband--carrier"></a><h3>The <code class="literal">“carrier”</code> property</h3> <pre class="programlisting"> “carrier” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the device has carrier.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -332,14 +321,13 @@ nm_device_infiniband_get_carrier (<em class="parameter"><code><a class="link" hr <div class="refsect2"> <a name="NMDeviceInfiniband--hw-address"></a><h3>The <code class="literal">“hw-address”</code> property</h3> <pre class="programlisting"> “hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The hardware (MAC) address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceModem.html b/docs/libnm-glib/html/NMDeviceModem.html index 2503475b..15fe2aa1 100644 --- a/docs/libnm-glib/html/NMDeviceModem.html +++ b/docs/libnm-glib/html/NMDeviceModem.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceModem</title> +<title>NMDeviceModem: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceWifi.html" title="NMDeviceWifi"> <link rel="next" href="NMDeviceBt.html" title="NMDeviceBt"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -127,8 +127,6 @@ </div> <div class="refsect1"> <a name="NMDeviceModem.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceModem.functions_details"></a><h2>Functions</h2> @@ -140,7 +138,6 @@ nm_device_modem_error_quark (<em class="parameter"><code><span class="type">void <div class="refsect3"> <a name="id-1.3.7.8.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceModem.html" title="NMDeviceModem"><span class="type">NMDeviceModem</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -170,7 +167,6 @@ may require a firmware reload or reinitialization.</p> <div class="refsect3"> <a name="id-1.3.7.8.3.6"></a><h4>Returns</h4> <p> the generic access technology families the modem supports</p> -<p></p> </div> </div> <hr> @@ -201,7 +197,6 @@ represents the network types the modem can immediately connect to.</p> <a name="id-1.3.7.8.4.6"></a><h4>Returns</h4> <p> the generic access technology families the modem supports without a firmware reload or other reinitialization</p> -<p></p> </div> </div> </div> @@ -255,24 +250,18 @@ a firmware reload or other reinitialization</p> <a name="NM-DEVICE-MODEM-ERROR:CAPS"></a><h3>NM_DEVICE_MODEM_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_MODEM_ERROR nm_device_modem_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-MODEM-MODEM-CAPABILITIES:CAPS"></a><h3>NM_DEVICE_MODEM_MODEM_CAPABILITIES</h3> <pre class="programlisting">#define NM_DEVICE_MODEM_MODEM_CAPABILITIES "modem-capabilities" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-MODEM-CURRENT-CAPABILITIES:CAPS"></a><h3>NM_DEVICE_MODEM_CURRENT_CAPABILITIES</h3> <pre class="programlisting">#define NM_DEVICE_MODEM_CURRENT_CAPABILITIES "current-capabilities" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -280,7 +269,8 @@ a firmware reload or other reinitialization</p> <div class="refsect2"> <a name="NMDeviceModem--current-capabilities"></a><h3>The <code class="literal">“current-capabilities”</code> property</h3> <pre class="programlisting"> “current-capabilities” <span class="type">guint</span></pre> -<p></p> +<p>The generic family of access technologies the modem currently supports +without a firmware reload or reinitialization.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -288,14 +278,16 @@ a firmware reload or other reinitialization</p> <div class="refsect2"> <a name="NMDeviceModem--modem-capabilities"></a><h3>The <code class="literal">“modem-capabilities”</code> property</h3> <pre class="programlisting"> “modem-capabilities” <span class="type">guint</span></pre> -<p></p> +<p>The generic family of access technologies the modem supports. Not all +capabilities are available at the same time however; some modems require +a firmware reload or other reinitialization to switch between eg +CDMA/EVDO and GSM/UMTS.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceOlpcMesh.html b/docs/libnm-glib/html/NMDeviceOlpcMesh.html index a505af82..c48c4e36 100644 --- a/docs/libnm-glib/html/NMDeviceOlpcMesh.html +++ b/docs/libnm-glib/html/NMDeviceOlpcMesh.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceOlpcMesh</title> +<title>NMDeviceOlpcMesh: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceVlan.html" title="NMDeviceVlan"> <link rel="next" href="NMWimaxNsp.html" title="NMWimaxNsp"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -153,8 +153,6 @@ </div> <div class="refsect1"> <a name="NMDeviceOlpcMesh.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceOlpcMesh.functions_details"></a><h2>Functions</h2> @@ -166,7 +164,6 @@ nm_device_olpc_mesh_error_quark (<em class="parameter"><code><span class="type"> <div class="refsect3"> <a name="id-1.3.17.8.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceOlpcMesh.html" title="NMDeviceOlpcMesh"><span class="type">NMDeviceOlpcMesh</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -229,7 +226,6 @@ nm_device_olpc_mesh_get_hw_address (<em class="parameter"><code><a class="link" <a name="id-1.3.17.8.4.6"></a><h4>Returns</h4> <p> the hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -284,7 +280,6 @@ nm_device_olpc_mesh_get_active_channel <div class="refsect3"> <a name="id-1.3.17.8.6.6"></a><h4>Returns</h4> <p> active channel of the device</p> -<p></p> </div> </div> </div> @@ -331,32 +326,24 @@ nm_device_olpc_mesh_get_active_channel <a name="NM-DEVICE-OLPC-MESH-ERROR:CAPS"></a><h3>NM_DEVICE_OLPC_MESH_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_OLPC_MESH_ERROR nm_device_olpc_mesh_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-OLPC-MESH-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_OLPC_MESH_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_OLPC_MESH_HW_ADDRESS "hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-OLPC-MESH-COMPANION:CAPS"></a><h3>NM_DEVICE_OLPC_MESH_COMPANION</h3> <pre class="programlisting">#define NM_DEVICE_OLPC_MESH_COMPANION "companion" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-OLPC-MESH-ACTIVE-CHANNEL:CAPS"></a><h3>NM_DEVICE_OLPC_MESH_ACTIVE_CHANNEL</h3> <pre class="programlisting">#define NM_DEVICE_OLPC_MESH_ACTIVE_CHANNEL "active-channel" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -364,7 +351,7 @@ nm_device_olpc_mesh_get_active_channel <div class="refsect2"> <a name="NMDeviceOlpcMesh--active-channel"></a><h3>The <code class="literal">“active-channel”</code> property</h3> <pre class="programlisting"> “active-channel” <span class="type">guint</span></pre> -<p></p> +<p>The device's active channel.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -372,21 +359,20 @@ nm_device_olpc_mesh_get_active_channel <div class="refsect2"> <a name="NMDeviceOlpcMesh--companion"></a><h3>The <code class="literal">“companion”</code> property</h3> <pre class="programlisting"> “companion” <a class="link" href="NMDeviceWifi.html" title="NMDeviceWifi"><span class="type">NMDeviceWifi</span></a> *</pre> -<p></p> +<p>The companion device.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMDeviceOlpcMesh--hw-address"></a><h3>The <code class="literal">“hw-address”</code> property</h3> <pre class="programlisting"> “hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The hardware (MAC) address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceTeam.html b/docs/libnm-glib/html/NMDeviceTeam.html index 0b07f9eb..2195f9aa 100644 --- a/docs/libnm-glib/html/NMDeviceTeam.html +++ b/docs/libnm-glib/html/NMDeviceTeam.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceTeam</title> +<title>NMDeviceTeam: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceBridge.html" title="NMDeviceBridge"> <link rel="next" href="NMDeviceGeneric.html" title="NMDeviceGeneric"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -152,8 +152,6 @@ </div> <div class="refsect1"> <a name="NMDeviceTeam.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceTeam.functions_details"></a><h2>Functions</h2> @@ -165,9 +163,8 @@ nm_device_team_error_quark (<em class="parameter"><code><span class="type">void< <div class="refsect3"> <a name="id-1.3.13.8.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceTeam.html" title="NMDeviceTeam"><span class="type">NMDeviceTeam</span></a> errors.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -203,7 +200,7 @@ nm_device_team_new (<em class="parameter"><code><a href="/usr/share/gtk-doc/html <p> a new device. </p> <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -230,9 +227,8 @@ nm_device_team_get_hw_address (<em class="parameter"><code><a class="link" href= <a name="id-1.3.13.8.4.6"></a><h4>Returns</h4> <p> the hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -258,9 +254,8 @@ nm_device_team_get_carrier (<em class="parameter"><code><a class="link" href="NM <div class="refsect3"> <a name="id-1.3.13.8.5.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the device has carrier</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -292,7 +287,7 @@ nm_device_team_get_slaves (<em class="parameter"><code><a class="link" href="NMD copy used by the device, and must not be modified. </p> <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> NMDevice]</span></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> </div> <div class="refsect1"> @@ -345,32 +340,24 @@ copy used by the device, and must not be modified. </p> <a name="NM-DEVICE-TEAM-ERROR:CAPS"></a><h3>NM_DEVICE_TEAM_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_TEAM_ERROR nm_device_team_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-TEAM-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_TEAM_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_TEAM_HW_ADDRESS "hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-TEAM-CARRIER:CAPS"></a><h3>NM_DEVICE_TEAM_CARRIER</h3> <pre class="programlisting">#define NM_DEVICE_TEAM_CARRIER "carrier" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-TEAM-SLAVES:CAPS"></a><h3>NM_DEVICE_TEAM_SLAVES</h3> <pre class="programlisting">#define NM_DEVICE_TEAM_SLAVES "slaves" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -378,7 +365,7 @@ copy used by the device, and must not be modified. </p> <div class="refsect2"> <a name="NMDeviceTeam--carrier"></a><h3>The <code class="literal">“carrier”</code> property</h3> <pre class="programlisting"> “carrier” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the device has carrier.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -386,7 +373,7 @@ copy used by the device, and must not be modified. </p> <div class="refsect2"> <a name="NMDeviceTeam--hw-address"></a><h3>The <code class="literal">“hw-address”</code> property</h3> <pre class="programlisting"> “hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The hardware (MAC) address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -394,13 +381,12 @@ copy used by the device, and must not be modified. </p> <div class="refsect2"> <a name="NMDeviceTeam--slaves"></a><h3>The <code class="literal">“slaves”</code> property</h3> <pre class="programlisting"> “slaves” <span class="type">NMObjectArray</span> *</pre> -<p></p> +<p>The devices (<a class="link" href="NMDevice.html" title="NMDevice"><span class="type">NMDevice</span></a>) enslaved to the team device.</p> <p>Flags: Read</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceVlan.html b/docs/libnm-glib/html/NMDeviceVlan.html index e28b1978..51c89f0d 100644 --- a/docs/libnm-glib/html/NMDeviceVlan.html +++ b/docs/libnm-glib/html/NMDeviceVlan.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceVlan</title> +<title>NMDeviceVlan: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceInfiniband.html" title="NMDeviceInfiniband"> <link rel="next" href="NMDeviceOlpcMesh.html" title="NMDeviceOlpcMesh"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -170,8 +170,6 @@ </div> <div class="refsect1"> <a name="NMDeviceVlan.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceVlan.functions_details"></a><h2>Functions</h2> @@ -183,7 +181,6 @@ nm_device_vlan_error_quark (<em class="parameter"><code><span class="type">void< <div class="refsect3"> <a name="id-1.3.16.8.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceVlan.html" title="NMDeviceVlan"><span class="type">NMDeviceVlan</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -246,7 +243,6 @@ nm_device_vlan_get_hw_address (<em class="parameter"><code><a class="link" href= <a name="id-1.3.16.8.4.6"></a><h4>Returns</h4> <p> the hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -273,7 +269,6 @@ nm_device_vlan_get_carrier (<em class="parameter"><code><a class="link" href="NM <div class="refsect3"> <a name="id-1.3.16.8.5.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the device has carrier</p> -<p></p> </div> </div> <hr> @@ -301,7 +296,7 @@ nm_device_vlan_get_parent (<em class="parameter"><code><a class="link" href="NMD <p> the device's parent device. </p> <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> </div> -<p class="since">Since 1.0</p> +<p class="since">Since: 1.0</p> </div> <hr> <div class="refsect2"> @@ -326,7 +321,6 @@ nm_device_vlan_get_vlan_id (<em class="parameter"><code><a class="link" href="NM <div class="refsect3"> <a name="id-1.3.16.8.7.5"></a><h4>Returns</h4> <p> the device's VLAN ID</p> -<p></p> </div> </div> </div> @@ -394,40 +388,30 @@ nm_device_vlan_get_vlan_id (<em class="parameter"><code><a class="link" href="NM <a name="NM-DEVICE-VLAN-ERROR:CAPS"></a><h3>NM_DEVICE_VLAN_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_VLAN_ERROR nm_device_vlan_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-VLAN-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_VLAN_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_VLAN_HW_ADDRESS "hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-VLAN-CARRIER:CAPS"></a><h3>NM_DEVICE_VLAN_CARRIER</h3> <pre class="programlisting">#define NM_DEVICE_VLAN_CARRIER "carrier" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-VLAN-PARENT:CAPS"></a><h3>NM_DEVICE_VLAN_PARENT</h3> <pre class="programlisting">#define NM_DEVICE_VLAN_PARENT "parent" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-VLAN-VLAN-ID:CAPS"></a><h3>NM_DEVICE_VLAN_VLAN_ID</h3> <pre class="programlisting">#define NM_DEVICE_VLAN_VLAN_ID "vlan-id" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -435,7 +419,7 @@ nm_device_vlan_get_vlan_id (<em class="parameter"><code><a class="link" href="NM <div class="refsect2"> <a name="NMDeviceVlan--carrier"></a><h3>The <code class="literal">“carrier”</code> property</h3> <pre class="programlisting"> “carrier” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the device has carrier.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -443,7 +427,7 @@ nm_device_vlan_get_vlan_id (<em class="parameter"><code><a class="link" href="NM <div class="refsect2"> <a name="NMDeviceVlan--hw-address"></a><h3>The <code class="literal">“hw-address”</code> property</h3> <pre class="programlisting"> “hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The hardware (MAC) address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -451,15 +435,15 @@ nm_device_vlan_get_vlan_id (<em class="parameter"><code><a class="link" href="NM <div class="refsect2"> <a name="NMDeviceVlan--parent"></a><h3>The <code class="literal">“parent”</code> property</h3> <pre class="programlisting"> “parent” <a class="link" href="NMDevice.html" title="NMDevice"><span class="type">NMDevice</span></a> *</pre> -<p></p> +<p>The devices's parent device.</p> <p>Flags: Read</p> -<p class="since">Since 1.0</p> +<p class="since">Since: 1.0</p> </div> <hr> <div class="refsect2"> <a name="NMDeviceVlan--vlan-id"></a><h3>The <code class="literal">“vlan-id”</code> property</h3> <pre class="programlisting"> “vlan-id” <span class="type">guint</span></pre> -<p></p> +<p>The device's VLAN ID.</p> <p>Flags: Read</p> <p>Allowed values: <= 4095</p> <p>Default value: 0</p> @@ -467,7 +451,6 @@ nm_device_vlan_get_vlan_id (<em class="parameter"><code><a class="link" href="NM </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceWifi.html b/docs/libnm-glib/html/NMDeviceWifi.html index fb153226..d739d92a 100644 --- a/docs/libnm-glib/html/NMDeviceWifi.html +++ b/docs/libnm-glib/html/NMDeviceWifi.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceWifi</title> +<title>NMDeviceWifi: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceEthernet.html" title="NMDeviceEthernet"> <link rel="next" href="NMDeviceModem.html" title="NMDeviceModem"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -268,8 +268,6 @@ </div> <div class="refsect1"> <a name="NMDeviceWifi.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceWifi.functions_details"></a><h2>Functions</h2> @@ -281,7 +279,6 @@ nm_device_wifi_error_quark (<em class="parameter"><code><span class="type">void< <div class="refsect3"> <a name="id-1.3.6.9.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceWifi.html" title="NMDeviceWifi"><span class="type">NMDeviceWifi</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -344,7 +341,6 @@ nm_device_wifi_get_hw_address (<em class="parameter"><code><a class="link" href= <a name="id-1.3.6.9.4.6"></a><h4>Returns</h4> <p> the actual hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -373,7 +369,6 @@ nm_device_wifi_get_permanent_hw_address <a name="id-1.3.6.9.5.6"></a><h4>Returns</h4> <p> the permanent hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -400,7 +395,6 @@ nm_device_wifi_get_mode (<em class="parameter"><code><a class="link" href="NMDev <div class="refsect3"> <a name="id-1.3.6.9.6.6"></a><h4>Returns</h4> <p> the mode</p> -<p></p> </div> </div> <hr> @@ -427,7 +421,6 @@ nm_device_wifi_get_bitrate (<em class="parameter"><code><a class="link" href="NM <div class="refsect3"> <a name="id-1.3.6.9.7.6"></a><h4>Returns</h4> <p> the bit rate (kbit/s)</p> -<p></p> </div> </div> <hr> @@ -454,7 +447,6 @@ nm_device_wifi_get_capabilities (<em class="parameter"><code><a class="link" hre <div class="refsect3"> <a name="id-1.3.6.9.8.6"></a><h4>Returns</h4> <p> the capabilities</p> -<p></p> </div> </div> <hr> @@ -557,8 +549,6 @@ The returned array is owned by the client and should not be modified. </p> <span class="c_punctuation">(</span>*NMDeviceWifiRequestScanFn<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="NMDeviceWifi.html" title="NMDeviceWifi"><span class="type">NMDeviceWifi</span></a> *device</code></em>, <em class="parameter"><code><span class="type">GError</span> *error</code></em>, <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -597,7 +587,7 @@ to get available access points.</p> </tbody> </table></div> </div> -<p class="since">Since 0.9.8</p> +<p class="since">Since: 0.9.8</p> </div> </div> <div class="refsect1"> @@ -673,64 +663,48 @@ required by the connection</p> <a name="NM-DEVICE-WIFI-ERROR:CAPS"></a><h3>NM_DEVICE_WIFI_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_WIFI_ERROR nm_device_wifi_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIFI-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_WIFI_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_WIFI_HW_ADDRESS "hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIFI-PERMANENT-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_WIFI_PERMANENT_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_WIFI_PERMANENT_HW_ADDRESS "perm-hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIFI-MODE:CAPS"></a><h3>NM_DEVICE_WIFI_MODE</h3> <pre class="programlisting">#define NM_DEVICE_WIFI_MODE "mode" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIFI-BITRATE:CAPS"></a><h3>NM_DEVICE_WIFI_BITRATE</h3> <pre class="programlisting">#define NM_DEVICE_WIFI_BITRATE "bitrate" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIFI-ACTIVE-ACCESS-POINT:CAPS"></a><h3>NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT</h3> <pre class="programlisting">#define NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT "active-access-point" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIFI-CAPABILITIES:CAPS"></a><h3>NM_DEVICE_WIFI_CAPABILITIES</h3> <pre class="programlisting">#define NM_DEVICE_WIFI_CAPABILITIES "wireless-capabilities" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIFI-ACCESS-POINTS:CAPS"></a><h3>NM_DEVICE_WIFI_ACCESS_POINTS</h3> <pre class="programlisting">#define NM_DEVICE_WIFI_ACCESS_POINTS "access-points" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -738,22 +712,22 @@ required by the connection</p> <div class="refsect2"> <a name="NMDeviceWifi--access-points"></a><h3>The <code class="literal">“access-points”</code> property</h3> <pre class="programlisting"> “access-points” <span class="type">NMObjectArray</span> *</pre> -<p></p> +<p>List of all Wi-Fi access points the device can see.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMDeviceWifi--active-access-point"></a><h3>The <code class="literal">“active-access-point”</code> property</h3> <pre class="programlisting"> “active-access-point” <a class="link" href="NMAccessPoint.html" title="NMAccessPoint"><span class="type">NMAccessPoint</span></a> *</pre> -<p></p> +<p>The active <a class="link" href="NMAccessPoint.html" title="NMAccessPoint"><span class="type">NMAccessPoint</span></a> of the device.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMDeviceWifi--bitrate"></a><h3>The <code class="literal">“bitrate”</code> property</h3> <pre class="programlisting"> “bitrate” <span class="type">guint</span></pre> -<p></p> +<p>The bit rate of the device in kbit/s.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -761,7 +735,7 @@ required by the connection</p> <div class="refsect2"> <a name="NMDeviceWifi--hw-address"></a><h3>The <code class="literal">“hw-address”</code> property</h3> <pre class="programlisting"> “hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The hardware (MAC) address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -769,7 +743,7 @@ required by the connection</p> <div class="refsect2"> <a name="NMDeviceWifi--mode"></a><h3>The <code class="literal">“mode”</code> property</h3> <pre class="programlisting"> “mode” <span class="type">guint</span></pre> -<p></p> +<p>The mode of the device.</p> <p>Flags: Read</p> <p>Allowed values: <= 3</p> <p>Default value: 2</p> @@ -778,7 +752,7 @@ required by the connection</p> <div class="refsect2"> <a name="NMDeviceWifi--perm-hw-address"></a><h3>The <code class="literal">“perm-hw-address”</code> property</h3> <pre class="programlisting"> “perm-hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The hardware (MAC) address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -786,7 +760,7 @@ required by the connection</p> <div class="refsect2"> <a name="NMDeviceWifi--wireless-capabilities"></a><h3>The <code class="literal">“wireless-capabilities”</code> property</h3> <pre class="programlisting"> “wireless-capabilities” <span class="type">guint</span></pre> -<p></p> +<p>The wireless capabilities of the device.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -799,6 +773,34 @@ required by the connection</p> user_function (<a class="link" href="NMDeviceWifi.html" title="NMDeviceWifi"><span class="type">NMDeviceWifi</span></a> *device, <span class="type">GObject</span> *ap, <span class="type">gpointer</span> user_data)</pre> +<p>Notifies that a <a class="link" href="NMAccessPoint.html" title="NMAccessPoint"><span class="type">NMAccessPoint</span></a> is added to the Wi-Fi device.</p> +<div class="refsect3"> +<a name="id-1.3.6.12.2.5"></a><h4>Parameters</h4> +<div class="informaltable"><table width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>device</p></td> +<td class="parameter_description"><p>the Wi-Fi device that received the signal</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>ap</p></td> +<td class="parameter_description"><p>the new access point</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>user_data</p></td> +<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> <p>Flags: Run First</p> </div> <hr> @@ -808,12 +810,39 @@ user_function (<a class="link" href="NMDeviceWifi.html" title="NMDeviceWifi"><sp user_function (<a class="link" href="NMDeviceWifi.html" title="NMDeviceWifi"><span class="type">NMDeviceWifi</span></a> *device, <span class="type">GObject</span> *ap, <span class="type">gpointer</span> user_data)</pre> +<p>Notifies that a <a class="link" href="NMAccessPoint.html" title="NMAccessPoint"><span class="type">NMAccessPoint</span></a> is removed from the Wi-Fi device.</p> +<div class="refsect3"> +<a name="id-1.3.6.12.3.5"></a><h4>Parameters</h4> +<div class="informaltable"><table width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>device</p></td> +<td class="parameter_description"><p>the Wi-Fi device that received the signal</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>ap</p></td> +<td class="parameter_description"><p>the removed access point</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>user_data</p></td> +<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> <p>Flags: Run First</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMDeviceWimax.html b/docs/libnm-glib/html/NMDeviceWimax.html index 911ec29b..3ec917bc 100644 --- a/docs/libnm-glib/html/NMDeviceWimax.html +++ b/docs/libnm-glib/html/NMDeviceWimax.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMDeviceWimax</title> +<title>NMDeviceWimax: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceBt.html" title="NMDeviceBt"> <link rel="next" href="NMDeviceAdsl.html" title="NMDeviceAdsl"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -269,8 +269,6 @@ </div> <div class="refsect1"> <a name="NMDeviceWimax.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMDeviceWimax.functions_details"></a><h2>Functions</h2> @@ -282,7 +280,6 @@ nm_device_wimax_error_quark (<em class="parameter"><code><span class="type">void <div class="refsect3"> <a name="id-1.3.9.9.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMDeviceWimax.html" title="NMDeviceWimax"><span class="type">NMDeviceWimax</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -345,7 +342,6 @@ nm_device_wimax_get_hw_address (<em class="parameter"><code><a class="link" href <a name="id-1.3.9.9.4.6"></a><h4>Returns</h4> <p> the hardware address. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -465,7 +461,6 @@ device is not connected.</p> <div class="refsect3"> <a name="id-1.3.9.9.8.6"></a><h4>Returns</h4> <p> the center frequency in KHz, or 0</p> -<p></p> </div> </div> <hr> @@ -495,7 +490,6 @@ device is not connected.</p> <div class="refsect3"> <a name="id-1.3.9.9.9.6"></a><h4>Returns</h4> <p> the RSSI in dBm, or 0</p> -<p></p> </div> </div> <hr> @@ -524,7 +518,6 @@ meaning when the device is not connected.</p> <div class="refsect3"> <a name="id-1.3.9.9.10.6"></a><h4>Returns</h4> <p> the CINR in dB, or 0</p> -<p></p> </div> </div> <hr> @@ -553,7 +546,6 @@ nm_device_wimax_get_tx_power (<em class="parameter"><code><a class="link" href=" <div class="refsect3"> <a name="id-1.3.9.9.11.6"></a><h4>Returns</h4> <p> the TX power in dBm, or 0</p> -<p></p> </div> </div> <hr> @@ -580,7 +572,6 @@ nm_device_wimax_get_bsid (<em class="parameter"><code><a class="link" href="NMDe <div class="refsect3"> <a name="id-1.3.9.9.12.6"></a><h4>Returns</h4> <p> the ID of the serving Base Station, or <code class="literal">NULL</code></p> -<p></p> </div> </div> </div> @@ -641,72 +632,54 @@ nm_device_wimax_get_bsid (<em class="parameter"><code><a class="link" href="NMDe <a name="NM-DEVICE-WIMAX-ERROR:CAPS"></a><h3>NM_DEVICE_WIMAX_ERROR</h3> <pre class="programlisting">#define NM_DEVICE_WIMAX_ERROR nm_device_wimax_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIMAX-HW-ADDRESS:CAPS"></a><h3>NM_DEVICE_WIMAX_HW_ADDRESS</h3> <pre class="programlisting">#define NM_DEVICE_WIMAX_HW_ADDRESS "hw-address" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIMAX-ACTIVE-NSP:CAPS"></a><h3>NM_DEVICE_WIMAX_ACTIVE_NSP</h3> <pre class="programlisting">#define NM_DEVICE_WIMAX_ACTIVE_NSP "active-nsp" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIMAX-CENTER-FREQUENCY:CAPS"></a><h3>NM_DEVICE_WIMAX_CENTER_FREQUENCY</h3> <pre class="programlisting">#define NM_DEVICE_WIMAX_CENTER_FREQUENCY "center-frequency" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIMAX-RSSI:CAPS"></a><h3>NM_DEVICE_WIMAX_RSSI</h3> <pre class="programlisting">#define NM_DEVICE_WIMAX_RSSI "rssi" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIMAX-CINR:CAPS"></a><h3>NM_DEVICE_WIMAX_CINR</h3> <pre class="programlisting">#define NM_DEVICE_WIMAX_CINR "cinr" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIMAX-TX-POWER:CAPS"></a><h3>NM_DEVICE_WIMAX_TX_POWER</h3> <pre class="programlisting">#define NM_DEVICE_WIMAX_TX_POWER "tx-power" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIMAX-BSID:CAPS"></a><h3>NM_DEVICE_WIMAX_BSID</h3> <pre class="programlisting">#define NM_DEVICE_WIMAX_BSID "bsid" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-DEVICE-WIMAX-NSPS:CAPS"></a><h3>NM_DEVICE_WIMAX_NSPS</h3> <pre class="programlisting">#define NM_DEVICE_WIMAX_NSPS "nsps" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -714,14 +687,15 @@ nm_device_wimax_get_bsid (<em class="parameter"><code><a class="link" href="NMDe <div class="refsect2"> <a name="NMDeviceWimax--active-nsp"></a><h3>The <code class="literal">“active-nsp”</code> property</h3> <pre class="programlisting"> “active-nsp” <a class="link" href="NMWimaxNsp.html" title="NMWimaxNsp"><span class="type">NMWimaxNsp</span></a> *</pre> -<p></p> +<p>The active <a class="link" href="NMWimaxNsp.html" title="NMWimaxNsp"><span class="type">NMWimaxNsp</span></a> of the device.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMDeviceWimax--bsid"></a><h3>The <code class="literal">“bsid”</code> property</h3> <pre class="programlisting"> “bsid” <span class="type">gchar</span> *</pre> -<p></p> +<p>The ID of the serving base station as received from the network. Has +no meaning when the device is not connected.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -729,7 +703,9 @@ nm_device_wimax_get_bsid (<em class="parameter"><code><a class="link" href="NMDe <div class="refsect2"> <a name="NMDeviceWimax--center-frequency"></a><h3>The <code class="literal">“center-frequency”</code> property</h3> <pre class="programlisting"> “center-frequency” <span class="type">guint</span></pre> -<p></p> +<p>The center frequency (in KHz) of the radio channel the device is using to +communicate with the network when connected. Has no meaning when the +device is not connected.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -737,7 +713,9 @@ nm_device_wimax_get_bsid (<em class="parameter"><code><a class="link" href="NMDe <div class="refsect2"> <a name="NMDeviceWimax--cinr"></a><h3>The <code class="literal">“cinr”</code> property</h3> <pre class="programlisting"> “cinr” <span class="type">gint</span></pre> -<p></p> +<p>CINR (Carrier to Interference + Noise Ratio) of the current radio link +in dB. CINR is a more accurate measure of radio link quality. Has no +meaning when the device is not connected.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -745,7 +723,7 @@ nm_device_wimax_get_bsid (<em class="parameter"><code><a class="link" href="NMDe <div class="refsect2"> <a name="NMDeviceWimax--hw-address"></a><h3>The <code class="literal">“hw-address”</code> property</h3> <pre class="programlisting"> “hw-address” <span class="type">gchar</span> *</pre> -<p></p> +<p>The hardware (MAC) address of the device.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -753,15 +731,18 @@ nm_device_wimax_get_bsid (<em class="parameter"><code><a class="link" href="NMDe <div class="refsect2"> <a name="NMDeviceWimax--nsps"></a><h3>The <code class="literal">“nsps”</code> property</h3> <pre class="programlisting"> “nsps” <span class="type">NMObjectArray</span> *</pre> -<p></p> +<p>List of all WiMAX Network Service Providers the device can see.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMDeviceWimax--rssi"></a><h3>The <code class="literal">“rssi”</code> property</h3> <pre class="programlisting"> “rssi” <span class="type">gint</span></pre> -<p></p> +<p>RSSI of the current radio link in dBm. This value indicates how strong +the raw received RF signal from the base station is, but does not +indicate the overall quality of the radio link. Has no meaning when the +device is not connected.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -769,7 +750,9 @@ nm_device_wimax_get_bsid (<em class="parameter"><code><a class="link" href="NMDe <div class="refsect2"> <a name="NMDeviceWimax--tx-power"></a><h3>The <code class="literal">“tx-power”</code> property</h3> <pre class="programlisting"> “tx-power” <span class="type">gint</span></pre> -<p></p> +<p>Average power of the last burst transmitted by the device, in units of +0.5 dBm. i.e. a TxPower of -11 represents an actual device TX power of +-5.5 dBm. Has no meaning when the device is not connected.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -782,6 +765,34 @@ nm_device_wimax_get_bsid (<em class="parameter"><code><a class="link" href="NMDe user_function (<a class="link" href="NMDeviceWimax.html" title="NMDeviceWimax"><span class="type">NMDeviceWimax</span></a> *self, <span class="type">GObject</span> *nsp, <span class="type">gpointer</span> user_data)</pre> +<p>Notifies that a <a class="link" href="NMWimaxNsp.html" title="NMWimaxNsp"><span class="type">NMWimaxNsp</span></a> is added to the wimax device.</p> +<div class="refsect3"> +<a name="id-1.3.9.12.2.5"></a><h4>Parameters</h4> +<div class="informaltable"><table width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>self</p></td> +<td class="parameter_description"><p>the wimax device that received the signal</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>nsp</p></td> +<td class="parameter_description"><p>the new NSP</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>user_data</p></td> +<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> <p>Flags: Run First</p> </div> <hr> @@ -791,12 +802,39 @@ user_function (<a class="link" href="NMDeviceWimax.html" title="NMDeviceWimax">< user_function (<a class="link" href="NMDeviceWimax.html" title="NMDeviceWimax"><span class="type">NMDeviceWimax</span></a> *self, <span class="type">GObject</span> *nsp, <span class="type">gpointer</span> user_data)</pre> +<p>Notifies that a <a class="link" href="NMWimaxNsp.html" title="NMWimaxNsp"><span class="type">NMWimaxNsp</span></a> is removed from the wimax device.</p> +<div class="refsect3"> +<a name="id-1.3.9.12.3.5"></a><h4>Parameters</h4> +<div class="informaltable"><table width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>self</p></td> +<td class="parameter_description"><p>the wimax device that received the signal</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>nsp</p></td> +<td class="parameter_description"><p>the removed NSP</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>user_data</p></td> +<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> <p>Flags: Run First</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMIP4Config.html b/docs/libnm-glib/html/NMIP4Config.html index fec85cac..b7b318e1 100644 --- a/docs/libnm-glib/html/NMIP4Config.html +++ b/docs/libnm-glib/html/NMIP4Config.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMIP4Config</title> +<title>NMIP4Config: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMAccessPoint.html" title="NMAccessPoint"> <link rel="next" href="NMIP6Config.html" title="NMIP6Config"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -201,8 +201,6 @@ </div> <div class="refsect1"> <a name="NMIP4Config.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMIP4Config.functions_details"></a><h2>Functions</h2> @@ -264,9 +262,8 @@ nm_ip4_config_get_gateway (<em class="parameter"><code><a class="link" href="NMI <div class="refsect3"> <a name="id-1.3.20.8.3.6"></a><h4>Returns</h4> <p> the IP4 address of the gateway.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -409,7 +406,7 @@ nm_ip4_config_get_searches (<em class="parameter"><code><a class="link" href="NM internal copy used by the configuration, and must not be modified. </p> <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8]</span></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -447,56 +444,42 @@ modified. </p> <a name="NM-IP4-CONFIG-GATEWAY:CAPS"></a><h3>NM_IP4_CONFIG_GATEWAY</h3> <pre class="programlisting">#define NM_IP4_CONFIG_GATEWAY "gateway" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-IP4-CONFIG-ADDRESSES:CAPS"></a><h3>NM_IP4_CONFIG_ADDRESSES</h3> <pre class="programlisting">#define NM_IP4_CONFIG_ADDRESSES "addresses" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-IP4-CONFIG-ROUTES:CAPS"></a><h3>NM_IP4_CONFIG_ROUTES</h3> <pre class="programlisting">#define NM_IP4_CONFIG_ROUTES "routes" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-IP4-CONFIG-NAMESERVERS:CAPS"></a><h3>NM_IP4_CONFIG_NAMESERVERS</h3> <pre class="programlisting">#define NM_IP4_CONFIG_NAMESERVERS "nameservers" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-IP4-CONFIG-DOMAINS:CAPS"></a><h3>NM_IP4_CONFIG_DOMAINS</h3> <pre class="programlisting">#define NM_IP4_CONFIG_DOMAINS "domains" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-IP4-CONFIG-SEARCHES:CAPS"></a><h3>NM_IP4_CONFIG_SEARCHES</h3> <pre class="programlisting">#define NM_IP4_CONFIG_SEARCHES "searches" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-IP4-CONFIG-WINS-SERVERS:CAPS"></a><h3>NM_IP4_CONFIG_WINS_SERVERS</h3> <pre class="programlisting">#define NM_IP4_CONFIG_WINS_SERVERS "wins-servers" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -504,58 +487,57 @@ modified. </p> <div class="refsect2"> <a name="NMIP4Config--addresses"></a><h3>The <code class="literal">“addresses”</code> property</h3> <pre class="programlisting"> “addresses” <span class="type">gpointer</span></pre> -<p></p> +<p>The <span class="type">GPtrArray</span> containing <a href="https://developer.gnome.org/libnm-util/0.9/NMSettingIP4Config.html#NMIP4Address"><span class="type">NMIP4Address</span></a>es of the configuration.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMIP4Config--domains"></a><h3>The <code class="literal">“domains”</code> property</h3> <pre class="programlisting"> “domains” <span class="type">NMStringArray</span> *</pre> -<p></p> +<p>The <span class="type">GPtrArray</span> containing domain strings of the configuration.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMIP4Config--gateway"></a><h3>The <code class="literal">“gateway”</code> property</h3> <pre class="programlisting"> “gateway” <span class="type">gchar</span> *</pre> -<p></p> +<p>The IP4 gateway address of the configuration as string.</p> <p>Flags: Read</p> <p>Default value: NULL</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMIP4Config--nameservers"></a><h3>The <code class="literal">“nameservers”</code> property</h3> <pre class="programlisting"> “nameservers” <span class="type">NMUintArray</span> *</pre> -<p></p> +<p>The <span class="type">GArray</span> containing name servers (<span class="type">guint32s</span>) of the configuration.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMIP4Config--routes"></a><h3>The <code class="literal">“routes”</code> property</h3> <pre class="programlisting"> “routes” <span class="type">gpointer</span></pre> -<p></p> +<p>The <span class="type">GPtrArray</span> containing <span class="type">NMSettingIP4Routes</span> of the configuration.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMIP4Config--searches"></a><h3>The <code class="literal">“searches”</code> property</h3> <pre class="programlisting"> “searches” <span class="type">NMStringArray</span> *</pre> -<p></p> +<p>The <span class="type">GPtrArray</span> containing dns search strings of the configuration.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMIP4Config--wins-servers"></a><h3>The <code class="literal">“wins-servers”</code> property</h3> <pre class="programlisting"> “wins-servers” <span class="type">NMUintArray</span> *</pre> -<p></p> +<p>The <span class="type">GArray</span> containing WINS servers (<span class="type">guint32s</span>) of the configuration.</p> <p>Flags: Read</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMIP6Config.html b/docs/libnm-glib/html/NMIP6Config.html index 83f5f473..ed97f3e5 100644 --- a/docs/libnm-glib/html/NMIP6Config.html +++ b/docs/libnm-glib/html/NMIP6Config.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMIP6Config</title> +<title>NMIP6Config: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMIP4Config.html" title="NMIP4Config"> <link rel="next" href="NMDHCP4Config.html" title="NMDHCP4Config"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -201,8 +201,6 @@ </div> <div class="refsect1"> <a name="NMIP6Config.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMIP6Config.functions_details"></a><h2>Functions</h2> @@ -264,9 +262,8 @@ nm_ip6_config_get_gateway (<em class="parameter"><code><a class="link" href="NMI <div class="refsect3"> <a name="id-1.3.21.8.3.6"></a><h4>Returns</h4> <p> the IPv6 gateway of the configuration.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -350,9 +347,8 @@ nm_ip6_config_get_num_nameservers (<em class="parameter"><code><a class="link" h <div class="refsect3"> <a name="id-1.3.21.8.6.6"></a><h4>Returns</h4> <p> the number of domain name servers</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -390,7 +386,7 @@ nm_ip6_config_get_nameserver (<em class="parameter"><code><a class="link" href=" . </p> <p><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> fixed-size=16][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> guint8][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -398,8 +394,9 @@ nm_ip6_config_get_nameserver (<em class="parameter"><code><a class="link" href=" <pre class="programlisting">const <span class="returnvalue">GSList</span> * nm_ip6_config_get_nameservers (<em class="parameter"><code><a class="link" href="NMIP6Config.html" title="NMIP6Config"><span class="type">NMIP6Config</span></a> *config</code></em>);</pre> <p>Gets the domain name servers (DNS).</p> +<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p> <div class="refsect3"> -<a name="id-1.3.21.8.8.5"></a><h4>Parameters</h4> +<a name="id-1.3.21.8.8.6"></a><h4>Parameters</h4> <div class="informaltable"><table width="100%" border="0"> <colgroup> <col width="150px" class="parameters_name"> @@ -414,11 +411,10 @@ nm_ip6_config_get_nameservers (<em class="parameter"><code><a class="link" href= </table></div> </div> <div class="refsect3"> -<a name="id-1.3.21.8.8.6"></a><h4>Returns</h4> +<a name="id-1.3.21.8.8.7"></a><h4>Returns</h4> <p> a <span class="type">GSList</span> containing elements of type 'struct in6_addr' which contain the addresses of nameservers of the configuration. This is the internal copy used by the configuration and must not be modified.</p> -<p></p> </div> </div> <hr> @@ -476,7 +472,7 @@ nm_ip6_config_get_searches (<em class="parameter"><code><a class="link" href="NM This is the internal copy used by the configuration, and must not be modified. </p> <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8]</span></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> </div> <div class="refsect1"> @@ -485,48 +481,36 @@ This is the internal copy used by the configuration, and must not be modified. < <a name="NM-IP6-CONFIG-GATEWAY:CAPS"></a><h3>NM_IP6_CONFIG_GATEWAY</h3> <pre class="programlisting">#define NM_IP6_CONFIG_GATEWAY "gateway" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-IP6-CONFIG-ADDRESSES:CAPS"></a><h3>NM_IP6_CONFIG_ADDRESSES</h3> <pre class="programlisting">#define NM_IP6_CONFIG_ADDRESSES "addresses" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-IP6-CONFIG-ROUTES:CAPS"></a><h3>NM_IP6_CONFIG_ROUTES</h3> <pre class="programlisting">#define NM_IP6_CONFIG_ROUTES "routes" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-IP6-CONFIG-NAMESERVERS:CAPS"></a><h3>NM_IP6_CONFIG_NAMESERVERS</h3> <pre class="programlisting">#define NM_IP6_CONFIG_NAMESERVERS "nameservers" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-IP6-CONFIG-DOMAINS:CAPS"></a><h3>NM_IP6_CONFIG_DOMAINS</h3> <pre class="programlisting">#define NM_IP6_CONFIG_DOMAINS "domains" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-IP6-CONFIG-SEARCHES:CAPS"></a><h3>NM_IP6_CONFIG_SEARCHES</h3> <pre class="programlisting">#define NM_IP6_CONFIG_SEARCHES "searches" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -534,51 +518,55 @@ This is the internal copy used by the configuration, and must not be modified. < <div class="refsect2"> <a name="NMIP6Config--addresses"></a><h3>The <code class="literal">“addresses”</code> property</h3> <pre class="programlisting"> “addresses” <span class="type">NMIP6AddressObjectArray</span> *</pre> -<p></p> +<p>The <span class="type">GPtrArray</span> containing the IPv6 addresses; use +<a href="https://developer.gnome.org/libnm-util/0.9/libnm-util-nm-utils.html#nm-utils-ip6-addresses-from-gvalue"><code class="function">nm_utils_ip6_addresses_from_gvalue()</code></a> to return a <span class="type">GSList</span> of +<span class="type">NMSettingIP6Address</span> objects that is more usable than the raw data.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMIP6Config--domains"></a><h3>The <code class="literal">“domains”</code> property</h3> <pre class="programlisting"> “domains” <span class="type">NMStringArray</span> *</pre> -<p></p> +<p>The <span class="type">GPtrArray</span> containing domain strings of the configuration.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMIP6Config--gateway"></a><h3>The <code class="literal">“gateway”</code> property</h3> <pre class="programlisting"> “gateway” <span class="type">gchar</span> *</pre> -<p></p> +<p>The IPv6 gateway as string</p> <p>Flags: Read</p> <p>Default value: NULL</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> <a name="NMIP6Config--nameservers"></a><h3>The <code class="literal">“nameservers”</code> property</h3> <pre class="programlisting"> “nameservers” <span class="type">NMIP6AddressArray</span> *</pre> -<p></p> +<p>The <span class="type">GPtrArray</span> containing elements of type 'struct ip6_addr' which +contain the addresses of nameservers of the configuration.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMIP6Config--routes"></a><h3>The <code class="literal">“routes”</code> property</h3> <pre class="programlisting"> “routes” <span class="type">NMIP6RouteObjectArray</span> *</pre> -<p></p> +<p>The <span class="type">GPtrArray</span> containing the IPv6 routes; use +<a href="https://developer.gnome.org/libnm-util/0.9/libnm-util-nm-utils.html#nm-utils-ip6-routes-from-gvalue"><code class="function">nm_utils_ip6_routes_from_gvalue()</code></a> to return a <span class="type">GSList</span> of +<span class="type">NMSettingIP6Address</span> objects that is more usable than the raw data.</p> <p>Flags: Read</p> </div> <hr> <div class="refsect2"> <a name="NMIP6Config--searches"></a><h3>The <code class="literal">“searches”</code> property</h3> <pre class="programlisting"> “searches” <span class="type">NMStringArray</span> *</pre> -<p></p> +<p>The <span class="type">GPtrArray</span> containing dns search strings of the configuration.</p> <p>Flags: Read</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMObject.html b/docs/libnm-glib/html/NMObject.html index 9cc58a6f..296e0b0c 100644 --- a/docs/libnm-glib/html/NMObject.html +++ b/docs/libnm-glib/html/NMObject.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMObject</title> +<title>NMObject: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDHCP6Config.html" title="NMDHCP6Config"> <link rel="next" href="NMRemoteConnection.html" title="NMRemoteConnection"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -151,8 +151,6 @@ </div> <div class="refsect1"> <a name="NMObject.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMObject.functions_details"></a><h2>Functions</h2> @@ -164,7 +162,6 @@ nm_object_error_quark (<em class="parameter"><code><span class="type">void</span <div class="refsect3"> <a name="id-1.3.24.9.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMObject.html" title="NMObject"><span class="type">NMObject</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -219,7 +216,6 @@ nm_object_get_path (<em class="parameter"><code><a class="link" href="NMObject.h <a name="id-1.3.24.9.4.6"></a><h4>Returns</h4> <p> the object's path. This is the internal string used by the device, and must not be modified.</p> -<p></p> </div> </div> </div> @@ -260,24 +256,18 @@ device, and must not be modified.</p> <a name="NM-OBJECT-ERROR:CAPS"></a><h3>NM_OBJECT_ERROR</h3> <pre class="programlisting">#define NM_OBJECT_ERROR nm_object_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-OBJECT-DBUS-CONNECTION:CAPS"></a><h3>NM_OBJECT_DBUS_CONNECTION</h3> <pre class="programlisting">#define NM_OBJECT_DBUS_CONNECTION "dbus-connection" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-OBJECT-DBUS-PATH:CAPS"></a><h3>NM_OBJECT_DBUS_PATH</h3> <pre class="programlisting">#define NM_OBJECT_DBUS_PATH "dbus-path" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -285,14 +275,12 @@ device, and must not be modified.</p> <div class="refsect2"> <a name="NMObject--dbus-connection"></a><h3>The <code class="literal">“dbus-connection”</code> property</h3> <pre class="programlisting"> “dbus-connection” <a href="/usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGConnection.html#DBusGConnection"><span class="type">DBusGConnection</span></a> *</pre> -<p></p> <p>Flags: Read / Write / Construct Only</p> </div> <hr> <div class="refsect2"> <a name="NMObject--dbus-path"></a><h3>The <code class="literal">“dbus-path”</code> property</h3> <pre class="programlisting"> “dbus-path” <span class="type">gchar</span> *</pre> -<p></p> <p>Flags: Read / Write / Construct Only</p> <p>Default value: NULL</p> </div> @@ -306,12 +294,48 @@ user_function (<a class="link" href="NMObject.html" title="NMObject"><span class <span class="type">gpointer</span> error, <span class="type">gpointer</span> failed_path, <span class="type">gpointer</span> user_data)</pre> +<p>Indicates that an error occured while creating an <a class="link" href="NMObject.html" title="NMObject"><span class="type">NMObject</span></a> object +during property handling of <em class="parameter"><code>master_object</code></em> +.</p> +<p>Note: Be aware that the signal is private for libnm-glib's internal + use.</p> +<div class="refsect3"> +<a name="id-1.3.24.12.2.6"></a><h4>Parameters</h4> +<div class="informaltable"><table width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>master_object</p></td> +<td class="parameter_description"><p>the object that received the signal</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>error</p></td> +<td class="parameter_description"><p>the error that occured while creating object</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>failed_path</p></td> +<td class="parameter_description"><p>object path of the failed object</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>user_data</p></td> +<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> <p>Flags: Run First</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMRemoteConnection.html b/docs/libnm-glib/html/NMRemoteConnection.html index 64cd7154..c099c3df 100644 --- a/docs/libnm-glib/html/NMRemoteConnection.html +++ b/docs/libnm-glib/html/NMRemoteConnection.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMRemoteConnection</title> +<title>NMRemoteConnection: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMObject.html" title="NMObject"> <link rel="next" href="NMRemoteSettings.html" title="NMRemoteSettings"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -235,8 +235,6 @@ </div> <div class="refsect1"> <a name="NMRemoteConnection.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMRemoteConnection.functions_details"></a><h2>Functions</h2> @@ -244,8 +242,6 @@ <a name="NM-REMOTE-CONNECTION-ERROR:CAPS"></a><h3>NM_REMOTE_CONNECTION_ERROR</h3> <pre class="programlisting">#define NM_REMOTE_CONNECTION_ERROR (nm_remote_connection_error_quark ()) </pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -256,7 +252,6 @@ nm_remote_connection_error_quark (<em class="parameter"><code><span class="type" <div class="refsect3"> <a name="id-1.3.25.9.3.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMRemoteConnection.html" title="NMRemoteConnection"><span class="type">NMRemoteConnection</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -373,7 +368,6 @@ nm_remote_connection_new (<em class="parameter"><code><a href="/usr/share/gtk-do <div class="refsect3"> <a name="id-1.3.25.9.6.6"></a><h4>Returns</h4> <p> the new remote connection object on success, or <code class="literal">NULL</code> on failure</p> -<p></p> </div> </div> <hr> @@ -456,7 +450,7 @@ commit completes. </p></td> </tbody> </table></div> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -496,7 +490,7 @@ save completes. </p></td> </tbody> </table></div> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -604,9 +598,8 @@ nm_remote_connection_get_unsaved (<em class="parameter"><code><a class="link" hr <p> <code class="literal">TRUE</code> if the remote connection contains changes that have not been saved to disk, <code class="literal">FALSE</code> if the connection is the same as its on-disk representation.</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> </div> <div class="refsect1"> @@ -645,40 +638,30 @@ representation.</p> <a name="NM-REMOTE-CONNECTION-UNSAVED:CAPS"></a><h3>NM_REMOTE_CONNECTION_UNSAVED</h3> <pre class="programlisting">#define NM_REMOTE_CONNECTION_UNSAVED "unsaved" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-REMOTE-CONNECTION-UPDATED:CAPS"></a><h3>NM_REMOTE_CONNECTION_UPDATED</h3> <pre class="programlisting">#define NM_REMOTE_CONNECTION_UPDATED "updated" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-REMOTE-CONNECTION-REMOVED:CAPS"></a><h3>NM_REMOTE_CONNECTION_REMOVED</h3> <pre class="programlisting">#define NM_REMOTE_CONNECTION_REMOVED "removed" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NMRemoteConnectionCommitFunc"></a><h3>NMRemoteConnectionCommitFunc</h3> <pre class="programlisting">typedef NMRemoteConnectionResultFunc NMRemoteConnectionCommitFunc; </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NMRemoteConnectionDeleteFunc"></a><h3>NMRemoteConnectionDeleteFunc</h3> <pre class="programlisting">typedef NMRemoteConnectionResultFunc NMRemoteConnectionDeleteFunc; </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -686,21 +669,19 @@ representation.</p> <div class="refsect2"> <a name="NMRemoteConnection--bus"></a><h3>The <code class="literal">“bus”</code> property</h3> <pre class="programlisting"> “bus” <a href="/usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGConnection.html#DBusGConnection"><span class="type">DBusGConnection</span></a> *</pre> -<p></p> +<p>The <a href="/usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGConnection.html#DBusGConnection"><span class="type">DBusGConnection</span></a> that the <a class="link" href="NMRemoteConnection.html" title="NMRemoteConnection"><span class="type">NMRemoteConnection</span></a> is connected to.</p> <p>Flags: Write / Construct Only</p> </div> <hr> <div class="refsect2"> <a name="NMRemoteConnection--dbus-connection"></a><h3>The <code class="literal">“dbus-connection”</code> property</h3> <pre class="programlisting"> “dbus-connection” <a href="/usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGConnection.html#DBusGConnection"><span class="type">DBusGConnection</span></a> *</pre> -<p></p> <p>Flags: Write / Construct Only</p> </div> <hr> <div class="refsect2"> <a name="NMRemoteConnection--dbus-path"></a><h3>The <code class="literal">“dbus-path”</code> property</h3> <pre class="programlisting"> “dbus-path” <span class="type">gchar</span> *</pre> -<p></p> <p>Flags: Write / Construct Only</p> <p>Default value: NULL</p> </div> @@ -708,10 +689,11 @@ representation.</p> <div class="refsect2"> <a name="NMRemoteConnection--unsaved"></a><h3>The <code class="literal">“unsaved”</code> property</h3> <pre class="programlisting"> “unsaved” <span class="type">gboolean</span></pre> -<p></p> +<p><code class="literal">TRUE</code> if the remote connection contains changes that have not been saved +to disk, <code class="literal">FALSE</code> if the connection is the same as its on-disk representation.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> </div> <div class="refsect1"> @@ -721,6 +703,30 @@ representation.</p> <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="NMRemoteConnection.html" title="NMRemoteConnection"><span class="type">NMRemoteConnection</span></a> *connection, <span class="type">gpointer</span> user_data)</pre> +<p>This signal is emitted when a connection is either deleted or becomes +invisible to the current user.</p> +<div class="refsect3"> +<a name="id-1.3.25.12.2.5"></a><h4>Parameters</h4> +<div class="informaltable"><table width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>connection</p></td> +<td class="parameter_description"><p>a <a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html"><span class="type">NMConnection</span></a></p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>user_data</p></td> +<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> <p>Flags: Run First</p> </div> <hr> @@ -729,6 +735,30 @@ user_function (<a class="link" href="NMRemoteConnection.html" title="NMRemoteCon <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="NMRemoteConnection.html" title="NMRemoteConnection"><span class="type">NMRemoteConnection</span></a> *connection, <span class="type">gpointer</span> user_data)</pre> +<p>This signal is emitted when a connection changes, and it is +still visible to the user.</p> +<div class="refsect3"> +<a name="id-1.3.25.12.3.5"></a><h4>Parameters</h4> +<div class="informaltable"><table width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>connection</p></td> +<td class="parameter_description"><p>a <a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html"><span class="type">NMConnection</span></a></p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>user_data</p></td> +<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> <p>Flags: Run First</p> </div> <hr> @@ -743,7 +773,6 @@ user_function (<a class="link" href="NMRemoteConnection.html" title="NMRemoteCon </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMRemoteSettings.html b/docs/libnm-glib/html/NMRemoteSettings.html index 7f333eb5..10d37ade 100644 --- a/docs/libnm-glib/html/NMRemoteSettings.html +++ b/docs/libnm-glib/html/NMRemoteSettings.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMRemoteSettings</title> +<title>NMRemoteSettings: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMRemoteConnection.html" title="NMRemoteConnection"> <link rel="next" href="libnm-glib-nm-types.html" title="nm-types"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -435,7 +435,6 @@ nm_remote_settings_error_quark (<em class="parameter"><code><span class="type">v <div class="refsect3"> <a name="id-1.3.26.9.2.5"></a><h4>Returns</h4> <p> the error quark used for <a class="link" href="NMRemoteSettings.html" title="NMRemoteSettings"><span class="type">NMRemoteSettings</span></a> errors.</p> -<p></p> </div> </div> <hr> @@ -446,8 +445,6 @@ nm_remote_settings_error_quark (<em class="parameter"><code><span class="type">v <em class="parameter"><code><a class="link" href="NMRemoteConnection.html" title="NMRemoteConnection"><span class="type">NMRemoteConnection</span></a> *connection</code></em>, <em class="parameter"><code><span class="type">GError</span> *error</code></em>, <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -458,8 +455,6 @@ nm_remote_settings_error_quark (<em class="parameter"><code><span class="type">v <em class="parameter"><code><span class="type">char</span> **failures</code></em>, <em class="parameter"><code><span class="type">GError</span> *error</code></em>, <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -468,8 +463,6 @@ nm_remote_settings_error_quark (<em class="parameter"><code><span class="type">v <span class="c_punctuation">(</span>*NMRemoteSettingsSaveHostnameFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="NMRemoteSettings.html" title="NMRemoteSettings"><span class="type">NMRemoteSettings</span></a> *settings</code></em>, <em class="parameter"><code><span class="type">GError</span> *error</code></em>, <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -498,7 +491,6 @@ want to avoid that.</p> <div class="refsect3"> <a name="id-1.3.26.9.6.7"></a><h4>Returns</h4> <p> the new remote settings object on success, or <code class="literal">NULL</code> on failure</p> -<p></p> </div> </div> <hr> @@ -580,7 +572,6 @@ nm_remote_settings_new_finish (<em class="parameter"><code><span class="type">GA <div class="refsect3"> <a name="id-1.3.26.9.8.6"></a><h4>Returns</h4> <p> a new <a class="link" href="NMRemoteSettings.html" title="NMRemoteSettings"><span class="type">NMRemoteSettings</span></a> object, or <code class="literal">NULL</code> on error</p> -<p></p> </div> </div> <hr> @@ -651,7 +642,7 @@ nm_remote_settings_get_connection_by_id matching object was found. </p> <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -786,7 +777,6 @@ added, not the object itself</p></td> <div class="refsect3"> <a name="id-1.3.26.9.13.7"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the request was successful, <code class="literal">FALSE</code> if it failed</p> -<p></p> </div> </div> <hr> @@ -839,9 +829,8 @@ added, not the object itself</p></td> <div class="refsect3"> <a name="id-1.3.26.9.14.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the request was successful, <code class="literal">FALSE</code> if it failed</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -901,9 +890,8 @@ filenames that failed to load. </p></td> <p> <code class="literal">TRUE</code> if NetworkManager at least tried to load <em class="parameter"><code>filenames</code></em> , <code class="literal">FALSE</code> if an error occurred (eg, permission denied).</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -939,9 +927,8 @@ the in-memory state matches the on-disk state.</p> <div class="refsect3"> <a name="id-1.3.26.9.16.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> on failure</p> -<p></p> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -991,7 +978,6 @@ hostname operation completes. </p></td> <div class="refsect3"> <a name="id-1.3.26.9.17.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the request was successful, <code class="literal">FALSE</code> if it failed</p> -<p></p> </div> </div> </div> @@ -1049,56 +1035,42 @@ hostname operation completes. </p></td> <a name="NM-REMOTE-SETTINGS-ERROR:CAPS"></a><h3>NM_REMOTE_SETTINGS_ERROR</h3> <pre class="programlisting">#define NM_REMOTE_SETTINGS_ERROR nm_remote_settings_error_quark () </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-REMOTE-SETTINGS-BUS:CAPS"></a><h3>NM_REMOTE_SETTINGS_BUS</h3> <pre class="programlisting">#define NM_REMOTE_SETTINGS_BUS "bus" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-REMOTE-SETTINGS-SERVICE-RUNNING:CAPS"></a><h3>NM_REMOTE_SETTINGS_SERVICE_RUNNING</h3> <pre class="programlisting">#define NM_REMOTE_SETTINGS_SERVICE_RUNNING "service-running" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-REMOTE-SETTINGS-HOSTNAME:CAPS"></a><h3>NM_REMOTE_SETTINGS_HOSTNAME</h3> <pre class="programlisting">#define NM_REMOTE_SETTINGS_HOSTNAME "hostname" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-REMOTE-SETTINGS-CAN-MODIFY:CAPS"></a><h3>NM_REMOTE_SETTINGS_CAN_MODIFY</h3> <pre class="programlisting">#define NM_REMOTE_SETTINGS_CAN_MODIFY "can-modify" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-REMOTE-SETTINGS-NEW-CONNECTION:CAPS"></a><h3>NM_REMOTE_SETTINGS_NEW_CONNECTION</h3> <pre class="programlisting">#define NM_REMOTE_SETTINGS_NEW_CONNECTION "new-connection" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-REMOTE-SETTINGS-CONNECTIONS-READ:CAPS"></a><h3>NM_REMOTE_SETTINGS_CONNECTIONS_READ</h3> <pre class="programlisting">#define NM_REMOTE_SETTINGS_CONNECTIONS_READ "connections-read" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -1106,14 +1078,15 @@ hostname operation completes. </p></td> <div class="refsect2"> <a name="NMRemoteSettings--bus"></a><h3>The <code class="literal">“bus”</code> property</h3> <pre class="programlisting"> “bus” <a href="/usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGConnection.html#DBusGConnection"><span class="type">DBusGConnection</span></a> *</pre> -<p></p> +<p>The <a href="/usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGConnection.html#DBusGConnection"><span class="type">DBusGConnection</span></a> that the <a class="link" href="NMRemoteSettings.html" title="NMRemoteSettings"><span class="type">NMRemoteSettings</span></a> is connected to. Defaults +to the system bus if not specified.</p> <p>Flags: Read / Write / Construct Only</p> </div> <hr> <div class="refsect2"> <a name="NMRemoteSettings--can-modify"></a><h3>The <code class="literal">“can-modify”</code> property</h3> <pre class="programlisting"> “can-modify” <span class="type">gboolean</span></pre> -<p></p> +<p>If <code class="literal">TRUE</code>, adding and modifying connections is supported.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -1121,7 +1094,8 @@ hostname operation completes. </p></td> <div class="refsect2"> <a name="NMRemoteSettings--hostname"></a><h3>The <code class="literal">“hostname”</code> property</h3> <pre class="programlisting"> “hostname” <span class="type">gchar</span> *</pre> -<p></p> +<p>The machine hostname stored in persistent configuration. This can be +modified by calling <a class="link" href="NMRemoteSettings.html#nm-remote-settings-save-hostname" title="nm_remote_settings_save_hostname ()"><code class="function">nm_remote_settings_save_hostname()</code></a>.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -1129,7 +1103,7 @@ hostname operation completes. </p></td> <div class="refsect2"> <a name="NMRemoteSettings--service-running"></a><h3>The <code class="literal">“service-running”</code> property</h3> <pre class="programlisting"> “service-running” <span class="type">gboolean</span></pre> -<p></p> +<p>Whether the settings service is running.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -1159,7 +1133,6 @@ user_function (<a class="link" href="NMRemoteSettings.html" title="NMRemoteSetti </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMSecretAgent.html b/docs/libnm-glib/html/NMSecretAgent.html index 367c6450..8acd02c1 100644 --- a/docs/libnm-glib/html/NMSecretAgent.html +++ b/docs/libnm-glib/html/NMSecretAgent.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMSecretAgent</title> +<title>NMSecretAgent: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="libnm-glib-nm-types.html" title="nm-types"> <link rel="next" href="NMVPNConnection.html" title="NMVPNConnection"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -228,8 +228,6 @@ </div> <div class="refsect1"> <a name="NMSecretAgent.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMSecretAgent.functions_details"></a><h2>Functions</h2> @@ -237,20 +235,12 @@ <a name="NM-SECRET-AGENT-ERROR:CAPS"></a><h3>NM_SECRET_AGENT_ERROR</h3> <pre class="programlisting">#define NM_SECRET_AGENT_ERROR (nm_secret_agent_error_quark ()) </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="nm-secret-agent-error-quark"></a><h3>nm_secret_agent_error_quark ()</h3> <pre class="programlisting"><span class="returnvalue">GQuark</span> nm_secret_agent_error_quark (<em class="parameter"><code><span class="type">void</span></code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.28.9.3.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> @@ -299,7 +289,7 @@ something like this:</p> <span class="normal"> <a href="https://developer.gnome.org/libnm-util/0.9/NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-PSK:CAPS">NM_SETTING_WIRELESS_SECURITY_PSK</a></span><span class="symbol">,</span><span class="normal"> </span><span class="string">"my really cool PSK"</span><span class="symbol">,</span> <span class="normal"> NULL</span><span class="symbol">);</span> <span class="function"><a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html#nm-connection-add-setting">nm_connection_add_setting</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">secrets</span><span class="symbol">,</span><span class="normal"> </span><span class="function">NM_SETTING</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">s_wsec</span><span class="symbol">));</span> -<span class="normal">secrets_hash </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html#nm-connection-to-hash">nm_connection_to_hash</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">secrets</span><span class="symbol">,</span><span class="normal"> NM_SETTING_HASH_FLAG_ALL</span><span class="symbol">);</span> +<span class="normal">secrets_hash </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html#nm-connection-to-hash">nm_connection_to_hash</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">secrets</span><span class="symbol">,</span><span class="normal"> <a href="https://developer.gnome.org/libnm-util/0.9/NMSetting.html#NM-SETTING-HASH-FLAG-ALL:CAPS">NM_SETTING_HASH_FLAG_ALL</a></span><span class="symbol">);</span> <span class="symbol">(</span><span class="normal">call the NMSecretAgentGetSecretsFunc </span><span class="usertype">with</span><span class="normal"> secrets_hash</span><span class="symbol">)</span> @@ -482,7 +472,6 @@ asynchronous operation and its success or failure is indicated via the <p> a new <code class="literal">TRUE</code> if registration was successfully requested (this does not mean registration itself was successful), <code class="literal">FALSE</code> if registration was not successfully requested.</p> -<p></p> </div> </div> <hr> @@ -511,7 +500,6 @@ store secrets on behalf of this user.</p> <div class="refsect3"> <a name="id-1.3.28.9.8.6"></a><h4>Returns</h4> <p> a new <code class="literal">TRUE</code> if unregistration was successful, <code class="literal">FALSE</code> if it was not.</p> -<p></p> </div> </div> <hr> @@ -537,7 +525,6 @@ nm_secret_agent_get_registered (<em class="parameter"><code><a class="link" href <div class="refsect3"> <a name="id-1.3.28.9.9.5"></a><h4>Returns</h4> <p> a <code class="literal">TRUE</code> if the agent is registered, <code class="literal">FALSE</code> if it is not.</p> -<p></p> </div> </div> <hr> @@ -807,7 +794,7 @@ authentication dialogs.</p> </tbody> </table></div> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -869,40 +856,30 @@ results or carrier changes.</p> <a name="NM-SECRET-AGENT-IDENTIFIER:CAPS"></a><h3>NM_SECRET_AGENT_IDENTIFIER</h3> <pre class="programlisting">#define NM_SECRET_AGENT_IDENTIFIER "identifier" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-SECRET-AGENT-AUTO-REGISTER:CAPS"></a><h3>NM_SECRET_AGENT_AUTO_REGISTER</h3> <pre class="programlisting">#define NM_SECRET_AGENT_AUTO_REGISTER "auto-register" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-SECRET-AGENT-REGISTERED:CAPS"></a><h3>NM_SECRET_AGENT_REGISTERED</h3> <pre class="programlisting">#define NM_SECRET_AGENT_REGISTERED "registered" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-SECRET-AGENT-CAPABILITIES:CAPS"></a><h3>NM_SECRET_AGENT_CAPABILITIES</h3> <pre class="programlisting">#define NM_SECRET_AGENT_CAPABILITIES "capabilities" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-SECRET-AGENT-REGISTRATION-RESULT:CAPS"></a><h3>NM_SECRET_AGENT_REGISTRATION_RESULT</h3> <pre class="programlisting">#define NM_SECRET_AGENT_REGISTRATION_RESULT "registration-result" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -910,7 +887,13 @@ results or carrier changes.</p> <div class="refsect2"> <a name="NMSecretAgent--auto-register"></a><h3>The <code class="literal">“auto-register”</code> property</h3> <pre class="programlisting"> “auto-register” <span class="type">gboolean</span></pre> -<p></p> +<p>If TRUE, the agent will attempt to automatically register itself after +it is created (via an idle handler) and to re-register itself if +NetworkManager restarts. If FALSE, the agent does not automatically +register with NetworkManager, and <a class="link" href="NMSecretAgent.html#nm-secret-agent-register" title="nm_secret_agent_register ()"><code class="function">nm_secret_agent_register()</code></a> must be +called. If 'auto-register' is TRUE, calling <a class="link" href="NMSecretAgent.html#nm-secret-agent-unregister" title="nm_secret_agent_unregister ()"><code class="function">nm_secret_agent_unregister()</code></a> +will suppress auto-registration until <a class="link" href="NMSecretAgent.html#nm-secret-agent-register" title="nm_secret_agent_register ()"><code class="function">nm_secret_agent_register()</code></a> is +called, which re-enables auto-registration.</p> <p>Flags: Read / Write / Construct</p> <p>Default value: TRUE</p> </div> @@ -918,14 +901,20 @@ results or carrier changes.</p> <div class="refsect2"> <a name="NMSecretAgent--capabilities"></a><h3>The <code class="literal">“capabilities”</code> property</h3> <pre class="programlisting"> “capabilities” <a class="link" href="NMSecretAgent.html#NMSecretAgentCapabilities" title="enum NMSecretAgentCapabilities"><span class="type">NMSecretAgentCapabilities</span></a></pre> -<p></p> +<p>A bitfield of <a class="link" href="NMSecretAgent.html#NMSecretAgentCapabilities" title="enum NMSecretAgentCapabilities"><code class="literal">NMSecretAgentCapabilities</code></a>.</p> <p>Flags: Read / Write / Construct</p> </div> <hr> <div class="refsect2"> <a name="NMSecretAgent--identifier"></a><h3>The <code class="literal">“identifier”</code> property</h3> <pre class="programlisting"> “identifier” <span class="type">gchar</span> *</pre> -<p></p> +<p>Identifies this agent; only one agent in each user session may use the +same identifier. Identifier formatting follows the same rules as +D-Bus bus names with the exception that the ':' character is not +allowed. The valid set of characters is "A-Z[0-9]_-." and the +identifier is limited in length to 255 characters with a minimum +of 3 characters. An example valid identifier is 'org.gnome.nm-applet' +(without quotes).</p> <p>Flags: Read / Write / Construct Only</p> <p>Default value: NULL</p> </div> @@ -933,7 +922,7 @@ results or carrier changes.</p> <div class="refsect2"> <a name="NMSecretAgent--registered"></a><h3>The <code class="literal">“registered”</code> property</h3> <pre class="programlisting"> “registered” <span class="type">gboolean</span></pre> -<p></p> +<p><code class="literal">TRUE</code> if the agent is registered with NetworkManager, <code class="literal">FALSE</code> if not.</p> <p>Flags: Read</p> <p>Default value: FALSE</p> </div> @@ -946,12 +935,41 @@ results or carrier changes.</p> user_function (<a class="link" href="NMSecretAgent.html" title="NMSecretAgent"><span class="type">NMSecretAgent</span></a> *agent, <span class="type">gpointer</span> error, <span class="type">gpointer</span> user_data)</pre> +<p>Indicates the result of a registration request; if <em class="parameter"><code>error</code></em> + is NULL the +request was successful.</p> +<div class="refsect3"> +<a name="id-1.3.28.12.2.5"></a><h4>Parameters</h4> +<div class="informaltable"><table width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>agent</p></td> +<td class="parameter_description"><p>the agent that received the signal</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>error</p></td> +<td class="parameter_description"><p>the error, if any, that occured while registering</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>user_data</p></td> +<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> <p>Flags: Run First</p> </div> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMVPNConnection.html b/docs/libnm-glib/html/NMVPNConnection.html index c74274ea..7562a519 100644 --- a/docs/libnm-glib/html/NMVPNConnection.html +++ b/docs/libnm-glib/html/NMVPNConnection.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMVPNConnection</title> +<title>NMVPNConnection: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMSecretAgent.html" title="NMSecretAgent"> <link rel="next" href="libnm-glib-NMVPNPlugin.html" title="NMVPNPlugin"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -135,8 +135,6 @@ </div> <div class="refsect1"> <a name="NMVPNConnection.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMVPNConnection.functions_details"></a><h2>Functions</h2> @@ -198,7 +196,6 @@ nm_vpn_connection_get_vpn_state (<em class="parameter"><code><a class="link" hre <div class="refsect3"> <a name="id-1.3.29.9.3.6"></a><h4>Returns</h4> <p> the VPN state of the active VPN connection.</p> -<p></p> </div> </div> <hr> @@ -226,7 +223,6 @@ nm_vpn_connection_get_banner (<em class="parameter"><code><a class="link" href=" <a name="id-1.3.29.9.4.6"></a><h4>Returns</h4> <p> the VPN login banner of the VPN connection. This is the internal string used by the connection, and must not be modified.</p> -<p></p> </div> </div> </div> @@ -236,16 +232,12 @@ string used by the connection, and must not be modified.</p> <a name="NM-VPN-CONNECTION-VPN-STATE:CAPS"></a><h3>NM_VPN_CONNECTION_VPN_STATE</h3> <pre class="programlisting">#define NM_VPN_CONNECTION_VPN_STATE "vpn-state" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-VPN-CONNECTION-BANNER:CAPS"></a><h3>NM_VPN_CONNECTION_BANNER</h3> <pre class="programlisting">#define NM_VPN_CONNECTION_BANNER "banner" </pre> -<p> -</p> </div> </div> <div class="refsect1"> @@ -253,7 +245,7 @@ string used by the connection, and must not be modified.</p> <div class="refsect2"> <a name="NMVPNConnection--banner"></a><h3>The <code class="literal">“banner”</code> property</h3> <pre class="programlisting"> “banner” <span class="type">gchar</span> *</pre> -<p></p> +<p>The VPN login banner of the active VPN connection.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -261,7 +253,7 @@ string used by the connection, and must not be modified.</p> <div class="refsect2"> <a name="NMVPNConnection--vpn-state"></a><h3>The <code class="literal">“vpn-state”</code> property</h3> <pre class="programlisting"> “vpn-state” <span class="type">guint</span></pre> -<p></p> +<p>The VPN state of the active VPN connection.</p> <p>Flags: Read</p> <p>Allowed values: <= 7</p> <p>Default value: 0</p> @@ -281,7 +273,6 @@ user_function (<a class="link" href="NMVPNConnection.html" title="NMVPNConnectio </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/NMWimaxNsp.html b/docs/libnm-glib/html/NMWimaxNsp.html index a83434a5..91cdbfee 100644 --- a/docs/libnm-glib/html/NMWimaxNsp.html +++ b/docs/libnm-glib/html/NMWimaxNsp.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMWimaxNsp</title> +<title>NMWimaxNsp: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMDeviceOlpcMesh.html" title="NMDeviceOlpcMesh"> <link rel="next" href="NMAccessPoint.html" title="NMAccessPoint"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -155,8 +155,6 @@ </div> <div class="refsect1"> <a name="NMWimaxNsp.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="NMWimaxNsp.functions_details"></a><h2>Functions</h2> @@ -218,7 +216,6 @@ nm_wimax_nsp_get_name (<em class="parameter"><code><a class="link" href="NMWimax <div class="refsect3"> <a name="id-1.3.18.8.3.6"></a><h4>Returns</h4> <p> the name</p> -<p></p> </div> </div> <hr> @@ -245,7 +242,6 @@ nm_wimax_nsp_get_signal_quality (<em class="parameter"><code><a class="link" hre <div class="refsect3"> <a name="id-1.3.18.8.4.6"></a><h4>Returns</h4> <p> the signal quality</p> -<p></p> </div> </div> <hr> @@ -272,7 +268,6 @@ nm_wimax_nsp_get_network_type (<em class="parameter"><code><a class="link" href= <div class="refsect3"> <a name="id-1.3.18.8.5.6"></a><h4>Returns</h4> <p> the network type</p> -<p></p> </div> </div> <hr> @@ -357,7 +352,6 @@ against</p></td> <a name="id-1.3.18.8.7.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the connection may be activated with this WiMAX NSP, <code class="literal">FALSE</code> if it cannot be.</p> -<p></p> </div> </div> </div> @@ -367,24 +361,18 @@ against</p></td> <a name="NM-WIMAX-NSP-NAME:CAPS"></a><h3>NM_WIMAX_NSP_NAME</h3> <pre class="programlisting">#define NM_WIMAX_NSP_NAME "name" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-WIMAX-NSP-SIGNAL-QUALITY:CAPS"></a><h3>NM_WIMAX_NSP_SIGNAL_QUALITY</h3> <pre class="programlisting">#define NM_WIMAX_NSP_SIGNAL_QUALITY "signal-quality" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-WIMAX-NSP-NETWORK-TYPE:CAPS"></a><h3>NM_WIMAX_NSP_NETWORK_TYPE</h3> <pre class="programlisting">#define NM_WIMAX_NSP_NETWORK_TYPE "network-type" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -437,7 +425,7 @@ against</p></td> <div class="refsect2"> <a name="NMWimaxNsp--name"></a><h3>The <code class="literal">“name”</code> property</h3> <pre class="programlisting"> “name” <span class="type">gchar</span> *</pre> -<p></p> +<p>The name of the WiMAX NSP.</p> <p>Flags: Read</p> <p>Default value: NULL</p> </div> @@ -445,7 +433,7 @@ against</p></td> <div class="refsect2"> <a name="NMWimaxNsp--network-type"></a><h3>The <code class="literal">“network-type”</code> property</h3> <pre class="programlisting"> “network-type” <span class="type">guint</span></pre> -<p></p> +<p>The network type of the WiMAX NSP.</p> <p>Flags: Read</p> <p>Default value: 0</p> </div> @@ -453,7 +441,7 @@ against</p></td> <div class="refsect2"> <a name="NMWimaxNsp--signal-quality"></a><h3>The <code class="literal">“signal-quality”</code> property</h3> <pre class="programlisting"> “signal-quality” <span class="type">guint</span></pre> -<p></p> +<p>The signal quality of the WiMAX NSP.</p> <p>Flags: Read</p> <p>Allowed values: <= 100</p> <p>Default value: 0</p> @@ -461,7 +449,6 @@ against</p></td> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/annotation-glossary.html b/docs/libnm-glib/html/annotation-glossary.html index 03f6d263..52e56c4d 100644 --- a/docs/libnm-glib/html/annotation-glossary.html +++ b/docs/libnm-glib/html/annotation-glossary.html @@ -2,12 +2,12 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: Annotation Glossary</title> +<title>Annotation Glossary: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="index.html" title="libnm-glib Reference Manual"> <link rel="prev" href="api-index-full.html" title="API Index"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -48,6 +48,8 @@ <a name="glsS"></a><h3 class="title">S</h3> <dt><span class="glossterm"><a name="annotation-glossterm-scope%20async"></a>scope async</span></dt> <dd class="glossdef"><p>The callback is valid until first called.</p></dd> +<dt><span class="glossterm"><a name="annotation-glossterm-skip"></a>skip</span></dt> +<dd class="glossdef"><p>Exposed in C code, not necessarily available in other languages.</p></dd> <a name="glsT"></a><h3 class="title">T</h3> <dt><span class="glossterm"><a name="annotation-glossterm-transfer%20container"></a>transfer container</span></dt> <dd class="glossdef"><p>Free data container after the code is done.</p></dd> @@ -55,9 +57,10 @@ <dd class="glossdef"><p>Free data after the code is done.</p></dd> <dt><span class="glossterm"><a name="annotation-glossterm-transfer%20none"></a>transfer none</span></dt> <dd class="glossdef"><p>Don't free data after the code is done.</p></dd> +<dt><span class="glossterm"><a name="annotation-glossterm-type"></a>type</span></dt> +<dd class="glossdef"><p>Override the parsed C type with given type.</p></dd> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/api-index-full.html b/docs/libnm-glib/html/api-index-full.html index 59052d84..1f09388c 100644 --- a/docs/libnm-glib/html/api-index-full.html +++ b/docs/libnm-glib/html/api-index-full.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: API Index</title> +<title>API Index: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="index.html" title="libnm-glib Reference Manual"> <link rel="prev" href="object-tree.html" title="Object Hierarchy"> <link rel="next" href="annotation-glossary.html" title="Annotation Glossary"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -2573,7 +2573,6 @@ <dd></dd> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/ch02.html b/docs/libnm-glib/html/ch02.html index 80d259a7..18b6b1ab 100644 --- a/docs/libnm-glib/html/ch02.html +++ b/docs/libnm-glib/html/ch02.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: libnm-glib API Reference</title> +<title>libnm-glib API Reference: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="index.html" title="libnm-glib Reference Manual"> <link rel="prev" href="ref-overview.html" title="Object Overview"> <link rel="next" href="NMClient.html" title="NMClient"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -119,7 +119,6 @@ </dl></div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/index.html b/docs/libnm-glib/html/index.html index fb5c1c38..bec4797c 100644 --- a/docs/libnm-glib/html/index.html +++ b/docs/libnm-glib/html/index.html @@ -6,7 +6,7 @@ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="next" href="ref-overview.html" title="Object Overview"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -15,7 +15,7 @@ <div> <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">libnm-glib Reference Manual</p></th></tr></table></div> <div><p class="releaseinfo"> - for libnm-glib 1.0.2 + for libnm-glib 1.0.4 The latest version of this documentation can be found on-line at <a class="ulink" href="https://developer.gnome.org/libnm-glib/0.9/" target="_top">https://developer.gnome.org/libnm-glib/0.9/</a>. @@ -150,7 +150,6 @@ </dl></div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/index.sgml b/docs/libnm-glib/html/index.sgml index 7e412917..5b020fd0 100644 --- a/docs/libnm-glib/html/index.sgml +++ b/docs/libnm-glib/html/index.sgml @@ -63,8 +63,27 @@ <ANCHOR id="NM-CLIENT-ACTIVATING-CONNECTION:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-ACTIVATING-CONNECTION:CAPS"> <ANCHOR id="NM-CLIENT-DEVICES:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-DEVICES:CAPS"> <ANCHOR id="NMClientPermission" href="libnm-glib/NMClient.html#NMClientPermission"> +<ANCHOR id="NM-CLIENT-PERMISSION-NONE:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-NONE:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-ENABLE-DISABLE-NETWORK:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-ENABLE-DISABLE-NETWORK:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-ENABLE-DISABLE-WIFI:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-ENABLE-DISABLE-WIFI:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-ENABLE-DISABLE-WWAN:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-ENABLE-DISABLE-WWAN:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-ENABLE-DISABLE-WIMAX:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-ENABLE-DISABLE-WIMAX:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-SLEEP-WAKE:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-SLEEP-WAKE:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-NETWORK-CONTROL:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-NETWORK-CONTROL:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-WIFI-SHARE-PROTECTED:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-WIFI-SHARE-PROTECTED:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-WIFI-SHARE-OPEN:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-WIFI-SHARE-OPEN:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-SETTINGS-MODIFY-SYSTEM:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-SETTINGS-MODIFY-SYSTEM:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-SETTINGS-MODIFY-OWN:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-SETTINGS-MODIFY-OWN:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-SETTINGS-MODIFY-HOSTNAME:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-SETTINGS-MODIFY-HOSTNAME:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-LAST:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-LAST:CAPS"> <ANCHOR id="NMClientPermissionResult" href="libnm-glib/NMClient.html#NMClientPermissionResult"> +<ANCHOR id="NM-CLIENT-PERMISSION-RESULT-UNKNOWN:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-RESULT-UNKNOWN:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-RESULT-YES:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-RESULT-YES:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-RESULT-AUTH:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-RESULT-AUTH:CAPS"> +<ANCHOR id="NM-CLIENT-PERMISSION-RESULT-NO:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-PERMISSION-RESULT-NO:CAPS"> <ANCHOR id="NMClientError" href="libnm-glib/NMClient.html#NMClientError"> +<ANCHOR id="NM-CLIENT-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-CLIENT-ERROR-MANAGER-NOT-RUNNING:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-ERROR-MANAGER-NOT-RUNNING:CAPS"> <ANCHOR id="NM-CLIENT-ERROR:CAPS" href="libnm-glib/NMClient.html#NM-CLIENT-ERROR:CAPS"> <ANCHOR id="NMClient.property-details" href="libnm-glib/NMClient.html#NMClient.property-details"> <ANCHOR id="NMClient--activating-connection" href="libnm-glib/NMClient.html#NMClient--activating-connection"> @@ -191,6 +210,8 @@ <ANCHOR id="NMDeviceDeactivateFn" href="libnm-glib/NMDevice.html#NMDeviceDeactivateFn"> <ANCHOR id="NMDevice.other_details" href="libnm-glib/NMDevice.html#NMDevice.other_details"> <ANCHOR id="NMDeviceError" href="libnm-glib/NMDevice.html#NMDeviceError"> +<ANCHOR id="NM-DEVICE-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDevice.html#NM-DEVICE-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-ERROR-INTERFACE-MISMATCH:CAPS" href="libnm-glib/NMDevice.html#NM-DEVICE-ERROR-INTERFACE-MISMATCH:CAPS"> <ANCHOR id="NM-DEVICE-ERROR:CAPS" href="libnm-glib/NMDevice.html#NM-DEVICE-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-DEVICE-TYPE:CAPS" href="libnm-glib/NMDevice.html#NM-DEVICE-DEVICE-TYPE:CAPS"> <ANCHOR id="NM-DEVICE-UDI:CAPS" href="libnm-glib/NMDevice.html#NM-DEVICE-UDI:CAPS"> @@ -256,6 +277,11 @@ <ANCHOR id="nm-device-ethernet-get-carrier" href="libnm-glib/NMDeviceEthernet.html#nm-device-ethernet-get-carrier"> <ANCHOR id="NMDeviceEthernet.other_details" href="libnm-glib/NMDeviceEthernet.html#NMDeviceEthernet.other_details"> <ANCHOR id="NMDeviceEthernetError" href="libnm-glib/NMDeviceEthernet.html#NMDeviceEthernetError"> +<ANCHOR id="NM-DEVICE-ETHERNET-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceEthernet.html#NM-DEVICE-ETHERNET-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-ETHERNET-ERROR-NOT-ETHERNET-CONNECTION:CAPS" href="libnm-glib/NMDeviceEthernet.html#NM-DEVICE-ETHERNET-ERROR-NOT-ETHERNET-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-ETHERNET-ERROR-INVALID-ETHERNET-CONNECTION:CAPS" href="libnm-glib/NMDeviceEthernet.html#NM-DEVICE-ETHERNET-ERROR-INVALID-ETHERNET-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-ETHERNET-ERROR-INVALID-DEVICE-MAC:CAPS" href="libnm-glib/NMDeviceEthernet.html#NM-DEVICE-ETHERNET-ERROR-INVALID-DEVICE-MAC:CAPS"> +<ANCHOR id="NM-DEVICE-ETHERNET-ERROR-MAC-MISMATCH:CAPS" href="libnm-glib/NMDeviceEthernet.html#NM-DEVICE-ETHERNET-ERROR-MAC-MISMATCH:CAPS"> <ANCHOR id="NM-DEVICE-ETHERNET-ERROR:CAPS" href="libnm-glib/NMDeviceEthernet.html#NM-DEVICE-ETHERNET-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-ETHERNET-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceEthernet.html#NM-DEVICE-ETHERNET-HW-ADDRESS:CAPS"> <ANCHOR id="NM-DEVICE-ETHERNET-PERMANENT-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceEthernet.html#NM-DEVICE-ETHERNET-PERMANENT-HW-ADDRESS:CAPS"> @@ -288,6 +314,13 @@ <ANCHOR id="nm-device-wifi-request-scan-simple" href="libnm-glib/NMDeviceWifi.html#nm-device-wifi-request-scan-simple"> <ANCHOR id="NMDeviceWifi.other_details" href="libnm-glib/NMDeviceWifi.html#NMDeviceWifi.other_details"> <ANCHOR id="NMDeviceWifiError" href="libnm-glib/NMDeviceWifi.html#NMDeviceWifiError"> +<ANCHOR id="NM-DEVICE-WIFI-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-WIFI-ERROR-NOT-WIFI-CONNECTION:CAPS" href="libnm-glib/NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-NOT-WIFI-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-WIFI-ERROR-INVALID-WIFI-CONNECTION:CAPS" href="libnm-glib/NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-INVALID-WIFI-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-WIFI-ERROR-INVALID-DEVICE-MAC:CAPS" href="libnm-glib/NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-INVALID-DEVICE-MAC:CAPS"> +<ANCHOR id="NM-DEVICE-WIFI-ERROR-MAC-MISMATCH:CAPS" href="libnm-glib/NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-MAC-MISMATCH:CAPS"> +<ANCHOR id="NM-DEVICE-WIFI-ERROR-MISSING-DEVICE-WPA-CAPS" href="libnm-glib/NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-MISSING-DEVICE-WPA-CAPS"> +<ANCHOR id="NM-DEVICE-WIFI-ERROR-MISSING-DEVICE-RSN-CAPS" href="libnm-glib/NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-MISSING-DEVICE-RSN-CAPS"> <ANCHOR id="NM-DEVICE-WIFI-ERROR:CAPS" href="libnm-glib/NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-WIFI-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceWifi.html#NM-DEVICE-WIFI-HW-ADDRESS:CAPS"> <ANCHOR id="NM-DEVICE-WIFI-PERMANENT-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceWifi.html#NM-DEVICE-WIFI-PERMANENT-HW-ADDRESS:CAPS"> @@ -319,6 +352,10 @@ <ANCHOR id="nm-device-modem-get-current-capabilities" href="libnm-glib/NMDeviceModem.html#nm-device-modem-get-current-capabilities"> <ANCHOR id="NMDeviceModem.other_details" href="libnm-glib/NMDeviceModem.html#NMDeviceModem.other_details"> <ANCHOR id="NMDeviceModemError" href="libnm-glib/NMDeviceModem.html#NMDeviceModemError"> +<ANCHOR id="NM-DEVICE-MODEM-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceModem.html#NM-DEVICE-MODEM-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-MODEM-ERROR-NOT-MODEM-CONNECTION:CAPS" href="libnm-glib/NMDeviceModem.html#NM-DEVICE-MODEM-ERROR-NOT-MODEM-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-MODEM-ERROR-INVALID-MODEM-CONNECTION:CAPS" href="libnm-glib/NMDeviceModem.html#NM-DEVICE-MODEM-ERROR-INVALID-MODEM-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-MODEM-ERROR-MISSING-DEVICE-CAPS" href="libnm-glib/NMDeviceModem.html#NM-DEVICE-MODEM-ERROR-MISSING-DEVICE-CAPS"> <ANCHOR id="NM-DEVICE-MODEM-ERROR:CAPS" href="libnm-glib/NMDeviceModem.html#NM-DEVICE-MODEM-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-MODEM-MODEM-CAPABILITIES:CAPS" href="libnm-glib/NMDeviceModem.html#NM-DEVICE-MODEM-MODEM-CAPABILITIES:CAPS"> <ANCHOR id="NM-DEVICE-MODEM-CURRENT-CAPABILITIES:CAPS" href="libnm-glib/NMDeviceModem.html#NM-DEVICE-MODEM-CURRENT-CAPABILITIES:CAPS"> @@ -339,6 +376,12 @@ <ANCHOR id="nm-device-bt-get-capabilities" href="libnm-glib/NMDeviceBt.html#nm-device-bt-get-capabilities"> <ANCHOR id="NMDeviceBt.other_details" href="libnm-glib/NMDeviceBt.html#NMDeviceBt.other_details"> <ANCHOR id="NMDeviceBtError" href="libnm-glib/NMDeviceBt.html#NMDeviceBtError"> +<ANCHOR id="NM-DEVICE-BT-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceBt.html#NM-DEVICE-BT-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-BT-ERROR-NOT-BT-CONNECTION:CAPS" href="libnm-glib/NMDeviceBt.html#NM-DEVICE-BT-ERROR-NOT-BT-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-BT-ERROR-INVALID-BT-CONNECTION:CAPS" href="libnm-glib/NMDeviceBt.html#NM-DEVICE-BT-ERROR-INVALID-BT-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-BT-ERROR-INVALID-DEVICE-MAC:CAPS" href="libnm-glib/NMDeviceBt.html#NM-DEVICE-BT-ERROR-INVALID-DEVICE-MAC:CAPS"> +<ANCHOR id="NM-DEVICE-BT-ERROR-MAC-MISMATCH:CAPS" href="libnm-glib/NMDeviceBt.html#NM-DEVICE-BT-ERROR-MAC-MISMATCH:CAPS"> +<ANCHOR id="NM-DEVICE-BT-ERROR-MISSING-DEVICE-CAPS" href="libnm-glib/NMDeviceBt.html#NM-DEVICE-BT-ERROR-MISSING-DEVICE-CAPS"> <ANCHOR id="NM-DEVICE-BT-ERROR:CAPS" href="libnm-glib/NMDeviceBt.html#NM-DEVICE-BT-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-BT-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceBt.html#NM-DEVICE-BT-HW-ADDRESS:CAPS"> <ANCHOR id="NM-DEVICE-BT-NAME:CAPS" href="libnm-glib/NMDeviceBt.html#NM-DEVICE-BT-NAME:CAPS"> @@ -368,6 +411,11 @@ <ANCHOR id="nm-device-wimax-get-bsid" href="libnm-glib/NMDeviceWimax.html#nm-device-wimax-get-bsid"> <ANCHOR id="NMDeviceWimax.other_details" href="libnm-glib/NMDeviceWimax.html#NMDeviceWimax.other_details"> <ANCHOR id="NMDeviceWimaxError" href="libnm-glib/NMDeviceWimax.html#NMDeviceWimaxError"> +<ANCHOR id="NM-DEVICE-WIMAX-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceWimax.html#NM-DEVICE-WIMAX-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-WIMAX-ERROR-NOT-WIMAX-CONNECTION:CAPS" href="libnm-glib/NMDeviceWimax.html#NM-DEVICE-WIMAX-ERROR-NOT-WIMAX-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-WIMAX-ERROR-INVALID-WIMAX-CONNECTION:CAPS" href="libnm-glib/NMDeviceWimax.html#NM-DEVICE-WIMAX-ERROR-INVALID-WIMAX-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-WIMAX-ERROR-INVALID-DEVICE-MAC:CAPS" href="libnm-glib/NMDeviceWimax.html#NM-DEVICE-WIMAX-ERROR-INVALID-DEVICE-MAC:CAPS"> +<ANCHOR id="NM-DEVICE-WIMAX-ERROR-MAC-MISMATCH:CAPS" href="libnm-glib/NMDeviceWimax.html#NM-DEVICE-WIMAX-ERROR-MAC-MISMATCH:CAPS"> <ANCHOR id="NM-DEVICE-WIMAX-ERROR:CAPS" href="libnm-glib/NMDeviceWimax.html#NM-DEVICE-WIMAX-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-WIMAX-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceWimax.html#NM-DEVICE-WIMAX-HW-ADDRESS:CAPS"> <ANCHOR id="NM-DEVICE-WIMAX-ACTIVE-NSP:CAPS" href="libnm-glib/NMDeviceWimax.html#NM-DEVICE-WIMAX-ACTIVE-NSP:CAPS"> @@ -401,6 +449,9 @@ <ANCHOR id="nm-device-adsl-get-carrier" href="libnm-glib/NMDeviceAdsl.html#nm-device-adsl-get-carrier"> <ANCHOR id="NMDeviceAdsl.other_details" href="libnm-glib/NMDeviceAdsl.html#NMDeviceAdsl.other_details"> <ANCHOR id="NMDeviceAdslError" href="libnm-glib/NMDeviceAdsl.html#NMDeviceAdslError"> +<ANCHOR id="NM-DEVICE-ADSL-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceAdsl.html#NM-DEVICE-ADSL-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-ADSL-ERROR-NOT-ADSL-CONNECTION:CAPS" href="libnm-glib/NMDeviceAdsl.html#NM-DEVICE-ADSL-ERROR-NOT-ADSL-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-ADSL-ERROR-INVALID-ADSL-CONNECTION:CAPS" href="libnm-glib/NMDeviceAdsl.html#NM-DEVICE-ADSL-ERROR-INVALID-ADSL-CONNECTION:CAPS"> <ANCHOR id="NM-DEVICE-ADSL-ERROR:CAPS" href="libnm-glib/NMDeviceAdsl.html#NM-DEVICE-ADSL-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-ADSL-CARRIER:CAPS" href="libnm-glib/NMDeviceAdsl.html#NM-DEVICE-ADSL-CARRIER:CAPS"> <ANCHOR id="NMDeviceAdsl.property-details" href="libnm-glib/NMDeviceAdsl.html#NMDeviceAdsl.property-details"> @@ -419,6 +470,10 @@ <ANCHOR id="nm-device-bond-get-slaves" href="libnm-glib/NMDeviceBond.html#nm-device-bond-get-slaves"> <ANCHOR id="NMDeviceBond.other_details" href="libnm-glib/NMDeviceBond.html#NMDeviceBond.other_details"> <ANCHOR id="NMDeviceBondError" href="libnm-glib/NMDeviceBond.html#NMDeviceBondError"> +<ANCHOR id="NM-DEVICE-BOND-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceBond.html#NM-DEVICE-BOND-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-BOND-ERROR-NOT-BOND-CONNECTION:CAPS" href="libnm-glib/NMDeviceBond.html#NM-DEVICE-BOND-ERROR-NOT-BOND-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-BOND-ERROR-INVALID-BOND-CONNECTION:CAPS" href="libnm-glib/NMDeviceBond.html#NM-DEVICE-BOND-ERROR-INVALID-BOND-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-BOND-ERROR-INTERFACE-MISMATCH:CAPS" href="libnm-glib/NMDeviceBond.html#NM-DEVICE-BOND-ERROR-INTERFACE-MISMATCH:CAPS"> <ANCHOR id="NM-DEVICE-BOND-ERROR:CAPS" href="libnm-glib/NMDeviceBond.html#NM-DEVICE-BOND-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-BOND-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceBond.html#NM-DEVICE-BOND-HW-ADDRESS:CAPS"> <ANCHOR id="NM-DEVICE-BOND-CARRIER:CAPS" href="libnm-glib/NMDeviceBond.html#NM-DEVICE-BOND-CARRIER:CAPS"> @@ -441,6 +496,10 @@ <ANCHOR id="nm-device-bridge-get-slaves" href="libnm-glib/NMDeviceBridge.html#nm-device-bridge-get-slaves"> <ANCHOR id="NMDeviceBridge.other_details" href="libnm-glib/NMDeviceBridge.html#NMDeviceBridge.other_details"> <ANCHOR id="NMDeviceBridgeError" href="libnm-glib/NMDeviceBridge.html#NMDeviceBridgeError"> +<ANCHOR id="NM-DEVICE-BRIDGE-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceBridge.html#NM-DEVICE-BRIDGE-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-BRIDGE-ERROR-NOT-BRIDGE-CONNECTION:CAPS" href="libnm-glib/NMDeviceBridge.html#NM-DEVICE-BRIDGE-ERROR-NOT-BRIDGE-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-BRIDGE-ERROR-INVALID-BRIDGE-CONNECTION:CAPS" href="libnm-glib/NMDeviceBridge.html#NM-DEVICE-BRIDGE-ERROR-INVALID-BRIDGE-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-BRIDGE-ERROR-INTERFACE-MISMATCH:CAPS" href="libnm-glib/NMDeviceBridge.html#NM-DEVICE-BRIDGE-ERROR-INTERFACE-MISMATCH:CAPS"> <ANCHOR id="NM-DEVICE-BRIDGE-ERROR:CAPS" href="libnm-glib/NMDeviceBridge.html#NM-DEVICE-BRIDGE-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-BRIDGE-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceBridge.html#NM-DEVICE-BRIDGE-HW-ADDRESS:CAPS"> <ANCHOR id="NM-DEVICE-BRIDGE-CARRIER:CAPS" href="libnm-glib/NMDeviceBridge.html#NM-DEVICE-BRIDGE-CARRIER:CAPS"> @@ -463,6 +522,10 @@ <ANCHOR id="nm-device-team-get-slaves" href="libnm-glib/NMDeviceTeam.html#nm-device-team-get-slaves"> <ANCHOR id="NMDeviceTeam.other_details" href="libnm-glib/NMDeviceTeam.html#NMDeviceTeam.other_details"> <ANCHOR id="NMDeviceTeamError" href="libnm-glib/NMDeviceTeam.html#NMDeviceTeamError"> +<ANCHOR id="NM-DEVICE-TEAM-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceTeam.html#NM-DEVICE-TEAM-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-TEAM-ERROR-NOT-TEAM-CONNECTION:CAPS" href="libnm-glib/NMDeviceTeam.html#NM-DEVICE-TEAM-ERROR-NOT-TEAM-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-TEAM-ERROR-INVALID-TEAM-CONNECTION:CAPS" href="libnm-glib/NMDeviceTeam.html#NM-DEVICE-TEAM-ERROR-INVALID-TEAM-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-TEAM-ERROR-INTERFACE-MISMATCH:CAPS" href="libnm-glib/NMDeviceTeam.html#NM-DEVICE-TEAM-ERROR-INTERFACE-MISMATCH:CAPS"> <ANCHOR id="NM-DEVICE-TEAM-ERROR:CAPS" href="libnm-glib/NMDeviceTeam.html#NM-DEVICE-TEAM-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-TEAM-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceTeam.html#NM-DEVICE-TEAM-HW-ADDRESS:CAPS"> <ANCHOR id="NM-DEVICE-TEAM-CARRIER:CAPS" href="libnm-glib/NMDeviceTeam.html#NM-DEVICE-TEAM-CARRIER:CAPS"> @@ -483,6 +546,9 @@ <ANCHOR id="nm-device-generic-get-hw-address" href="libnm-glib/NMDeviceGeneric.html#nm-device-generic-get-hw-address"> <ANCHOR id="NMDeviceGeneric.other_details" href="libnm-glib/NMDeviceGeneric.html#NMDeviceGeneric.other_details"> <ANCHOR id="NMDeviceGenericError" href="libnm-glib/NMDeviceGeneric.html#NMDeviceGenericError"> +<ANCHOR id="NM-DEVICE-GENERIC-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceGeneric.html#NM-DEVICE-GENERIC-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-GENERIC-ERROR-NOT-GENERIC-CONNECTION:CAPS" href="libnm-glib/NMDeviceGeneric.html#NM-DEVICE-GENERIC-ERROR-NOT-GENERIC-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-GENERIC-ERROR-MISSING-INTERFACE-NAME:CAPS" href="libnm-glib/NMDeviceGeneric.html#NM-DEVICE-GENERIC-ERROR-MISSING-INTERFACE-NAME:CAPS"> <ANCHOR id="NM-DEVICE-GENERIC-ERROR:CAPS" href="libnm-glib/NMDeviceGeneric.html#NM-DEVICE-GENERIC-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-GENERIC-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceGeneric.html#NM-DEVICE-GENERIC-HW-ADDRESS:CAPS"> <ANCHOR id="NM-DEVICE-GENERIC-TYPE-DESCRIPTION:CAPS" href="libnm-glib/NMDeviceGeneric.html#NM-DEVICE-GENERIC-TYPE-DESCRIPTION:CAPS"> @@ -502,6 +568,11 @@ <ANCHOR id="nm-device-infiniband-get-carrier" href="libnm-glib/NMDeviceInfiniband.html#nm-device-infiniband-get-carrier"> <ANCHOR id="NMDeviceInfiniband.other_details" href="libnm-glib/NMDeviceInfiniband.html#NMDeviceInfiniband.other_details"> <ANCHOR id="NMDeviceInfinibandError" href="libnm-glib/NMDeviceInfiniband.html#NMDeviceInfinibandError"> +<ANCHOR id="NM-DEVICE-INFINIBAND-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-INFINIBAND-ERROR-NOT-INFINIBAND-CONNECTION:CAPS" href="libnm-glib/NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-ERROR-NOT-INFINIBAND-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-INFINIBAND-ERROR-INVALID-INFINIBAND-CONNECTION:CAPS" href="libnm-glib/NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-ERROR-INVALID-INFINIBAND-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-INFINIBAND-ERROR-INVALID-DEVICE-MAC:CAPS" href="libnm-glib/NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-ERROR-INVALID-DEVICE-MAC:CAPS"> +<ANCHOR id="NM-DEVICE-INFINIBAND-ERROR-MAC-MISMATCH:CAPS" href="libnm-glib/NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-ERROR-MAC-MISMATCH:CAPS"> <ANCHOR id="NM-DEVICE-INFINIBAND-ERROR:CAPS" href="libnm-glib/NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-INFINIBAND-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-HW-ADDRESS:CAPS"> <ANCHOR id="NM-DEVICE-INFINIBAND-CARRIER:CAPS" href="libnm-glib/NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-CARRIER:CAPS"> @@ -523,6 +594,12 @@ <ANCHOR id="nm-device-vlan-get-vlan-id" href="libnm-glib/NMDeviceVlan.html#nm-device-vlan-get-vlan-id"> <ANCHOR id="NMDeviceVlan.other_details" href="libnm-glib/NMDeviceVlan.html#NMDeviceVlan.other_details"> <ANCHOR id="NMDeviceVlanError" href="libnm-glib/NMDeviceVlan.html#NMDeviceVlanError"> +<ANCHOR id="NM-DEVICE-VLAN-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-VLAN-ERROR-NOT-VLAN-CONNECTION:CAPS" href="libnm-glib/NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR-NOT-VLAN-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-VLAN-ERROR-INVALID-VLAN-CONNECTION:CAPS" href="libnm-glib/NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR-INVALID-VLAN-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-VLAN-ERROR-ID-MISMATCH:CAPS" href="libnm-glib/NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR-ID-MISMATCH:CAPS"> +<ANCHOR id="NM-DEVICE-VLAN-ERROR-INTERFACE-MISMATCH:CAPS" href="libnm-glib/NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR-INTERFACE-MISMATCH:CAPS"> +<ANCHOR id="NM-DEVICE-VLAN-ERROR-MAC-MISMATCH:CAPS" href="libnm-glib/NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR-MAC-MISMATCH:CAPS"> <ANCHOR id="NM-DEVICE-VLAN-ERROR:CAPS" href="libnm-glib/NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-VLAN-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceVlan.html#NM-DEVICE-VLAN-HW-ADDRESS:CAPS"> <ANCHOR id="NM-DEVICE-VLAN-CARRIER:CAPS" href="libnm-glib/NMDeviceVlan.html#NM-DEVICE-VLAN-CARRIER:CAPS"> @@ -547,6 +624,9 @@ <ANCHOR id="nm-device-olpc-mesh-get-active-channel" href="libnm-glib/NMDeviceOlpcMesh.html#nm-device-olpc-mesh-get-active-channel"> <ANCHOR id="NMDeviceOlpcMesh.other_details" href="libnm-glib/NMDeviceOlpcMesh.html#NMDeviceOlpcMesh.other_details"> <ANCHOR id="NMDeviceOlpcMeshError" href="libnm-glib/NMDeviceOlpcMesh.html#NMDeviceOlpcMeshError"> +<ANCHOR id="NM-DEVICE-OLPC-MESH-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMDeviceOlpcMesh.html#NM-DEVICE-OLPC-MESH-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-DEVICE-OLPC-MESH-ERROR-NOT-OLPC-MESH-CONNECTION:CAPS" href="libnm-glib/NMDeviceOlpcMesh.html#NM-DEVICE-OLPC-MESH-ERROR-NOT-OLPC-MESH-CONNECTION:CAPS"> +<ANCHOR id="NM-DEVICE-OLPC-MESH-ERROR-INVALID-OLPC-MESH-CONNECTION:CAPS" href="libnm-glib/NMDeviceOlpcMesh.html#NM-DEVICE-OLPC-MESH-ERROR-INVALID-OLPC-MESH-CONNECTION:CAPS"> <ANCHOR id="NM-DEVICE-OLPC-MESH-ERROR:CAPS" href="libnm-glib/NMDeviceOlpcMesh.html#NM-DEVICE-OLPC-MESH-ERROR:CAPS"> <ANCHOR id="NM-DEVICE-OLPC-MESH-HW-ADDRESS:CAPS" href="libnm-glib/NMDeviceOlpcMesh.html#NM-DEVICE-OLPC-MESH-HW-ADDRESS:CAPS"> <ANCHOR id="NM-DEVICE-OLPC-MESH-COMPANION:CAPS" href="libnm-glib/NMDeviceOlpcMesh.html#NM-DEVICE-OLPC-MESH-COMPANION:CAPS"> @@ -573,6 +653,10 @@ <ANCHOR id="NM-WIMAX-NSP-SIGNAL-QUALITY:CAPS" href="libnm-glib/NMWimaxNsp.html#NM-WIMAX-NSP-SIGNAL-QUALITY:CAPS"> <ANCHOR id="NM-WIMAX-NSP-NETWORK-TYPE:CAPS" href="libnm-glib/NMWimaxNsp.html#NM-WIMAX-NSP-NETWORK-TYPE:CAPS"> <ANCHOR id="NMWimaxNspNetworkType" href="libnm-glib/NMWimaxNsp.html#NMWimaxNspNetworkType"> +<ANCHOR id="NM-WIMAX-NSP-NETWORK-TYPE-UNKNOWN:CAPS" href="libnm-glib/NMWimaxNsp.html#NM-WIMAX-NSP-NETWORK-TYPE-UNKNOWN:CAPS"> +<ANCHOR id="NM-WIMAX-NSP-NETWORK-TYPE-HOME:CAPS" href="libnm-glib/NMWimaxNsp.html#NM-WIMAX-NSP-NETWORK-TYPE-HOME:CAPS"> +<ANCHOR id="NM-WIMAX-NSP-NETWORK-TYPE-PARTNER:CAPS" href="libnm-glib/NMWimaxNsp.html#NM-WIMAX-NSP-NETWORK-TYPE-PARTNER:CAPS"> +<ANCHOR id="NM-WIMAX-NSP-NETWORK-TYPE-ROAMING-PARTNER:CAPS" href="libnm-glib/NMWimaxNsp.html#NM-WIMAX-NSP-NETWORK-TYPE-ROAMING-PARTNER:CAPS"> <ANCHOR id="NMWimaxNsp.property-details" href="libnm-glib/NMWimaxNsp.html#NMWimaxNsp.property-details"> <ANCHOR id="NMWimaxNsp--name" href="libnm-glib/NMWimaxNsp.html#NMWimaxNsp--name"> <ANCHOR id="NMWimaxNsp--network-type" href="libnm-glib/NMWimaxNsp.html#NMWimaxNsp--network-type"> @@ -721,6 +805,8 @@ <ANCHOR id="nm-object-get-path" href="libnm-glib/NMObject.html#nm-object-get-path"> <ANCHOR id="NMObject.other_details" href="libnm-glib/NMObject.html#NMObject.other_details"> <ANCHOR id="NMObjectError" href="libnm-glib/NMObject.html#NMObjectError"> +<ANCHOR id="NM-OBJECT-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMObject.html#NM-OBJECT-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-OBJECT-ERROR-OBJECT-CREATION-FAILURE:CAPS" href="libnm-glib/NMObject.html#NM-OBJECT-ERROR-OBJECT-CREATION-FAILURE:CAPS"> <ANCHOR id="NM-OBJECT-ERROR:CAPS" href="libnm-glib/NMObject.html#NM-OBJECT-ERROR:CAPS"> <ANCHOR id="NM-OBJECT-DBUS-CONNECTION:CAPS" href="libnm-glib/NMObject.html#NM-OBJECT-DBUS-CONNECTION:CAPS"> <ANCHOR id="NM-OBJECT-DBUS-PATH:CAPS" href="libnm-glib/NMObject.html#NM-OBJECT-DBUS-PATH:CAPS"> @@ -750,6 +836,8 @@ <ANCHOR id="nm-remote-connection-get-unsaved" href="libnm-glib/NMRemoteConnection.html#nm-remote-connection-get-unsaved"> <ANCHOR id="NMRemoteConnection.other_details" href="libnm-glib/NMRemoteConnection.html#NMRemoteConnection.other_details"> <ANCHOR id="NMRemoteConnectionError" href="libnm-glib/NMRemoteConnection.html#NMRemoteConnectionError"> +<ANCHOR id="NM-REMOTE-CONNECTION-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMRemoteConnection.html#NM-REMOTE-CONNECTION-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-REMOTE-CONNECTION-ERROR-DISCONNECTED:CAPS" href="libnm-glib/NMRemoteConnection.html#NM-REMOTE-CONNECTION-ERROR-DISCONNECTED:CAPS"> <ANCHOR id="NM-REMOTE-CONNECTION-UNSAVED:CAPS" href="libnm-glib/NMRemoteConnection.html#NM-REMOTE-CONNECTION-UNSAVED:CAPS"> <ANCHOR id="NM-REMOTE-CONNECTION-UPDATED:CAPS" href="libnm-glib/NMRemoteConnection.html#NM-REMOTE-CONNECTION-UPDATED:CAPS"> <ANCHOR id="NM-REMOTE-CONNECTION-REMOVED:CAPS" href="libnm-glib/NMRemoteConnection.html#NM-REMOTE-CONNECTION-REMOVED:CAPS"> @@ -790,6 +878,10 @@ <ANCHOR id="nm-remote-settings-save-hostname" href="libnm-glib/NMRemoteSettings.html#nm-remote-settings-save-hostname"> <ANCHOR id="NMRemoteSettings.other_details" href="libnm-glib/NMRemoteSettings.html#NMRemoteSettings.other_details"> <ANCHOR id="NMRemoteSettingsError" href="libnm-glib/NMRemoteSettings.html#NMRemoteSettingsError"> +<ANCHOR id="NM-REMOTE-SETTINGS-ERROR-UNKNOWN:CAPS" href="libnm-glib/NMRemoteSettings.html#NM-REMOTE-SETTINGS-ERROR-UNKNOWN:CAPS"> +<ANCHOR id="NM-REMOTE-SETTINGS-ERROR-CONNECTION-REMOVED:CAPS" href="libnm-glib/NMRemoteSettings.html#NM-REMOTE-SETTINGS-ERROR-CONNECTION-REMOVED:CAPS"> +<ANCHOR id="NM-REMOTE-SETTINGS-ERROR-CONNECTION-UNAVAILABLE:CAPS" href="libnm-glib/NMRemoteSettings.html#NM-REMOTE-SETTINGS-ERROR-CONNECTION-UNAVAILABLE:CAPS"> +<ANCHOR id="NM-REMOTE-SETTINGS-ERROR-SERVICE-UNAVAILABLE:CAPS" href="libnm-glib/NMRemoteSettings.html#NM-REMOTE-SETTINGS-ERROR-SERVICE-UNAVAILABLE:CAPS"> <ANCHOR id="NM-REMOTE-SETTINGS-ERROR:CAPS" href="libnm-glib/NMRemoteSettings.html#NM-REMOTE-SETTINGS-ERROR:CAPS"> <ANCHOR id="NM-REMOTE-SETTINGS-BUS:CAPS" href="libnm-glib/NMRemoteSettings.html#NM-REMOTE-SETTINGS-BUS:CAPS"> <ANCHOR id="NM-REMOTE-SETTINGS-SERVICE-RUNNING:CAPS" href="libnm-glib/NMRemoteSettings.html#NM-REMOTE-SETTINGS-SERVICE-RUNNING:CAPS"> @@ -831,8 +923,21 @@ <ANCHOR id="nm-secret-agent-delete-secrets" href="libnm-glib/NMSecretAgent.html#nm-secret-agent-delete-secrets"> <ANCHOR id="NMSecretAgent.other_details" href="libnm-glib/NMSecretAgent.html#NMSecretAgent.other_details"> <ANCHOR id="NMSecretAgentError" href="libnm-glib/NMSecretAgent.html#NMSecretAgentError"> +<ANCHOR id="NM-SECRET-AGENT-ERROR-NOT-AUTHORIZED:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-ERROR-NOT-AUTHORIZED:CAPS"> +<ANCHOR id="NM-SECRET-AGENT-ERROR-INVALID-CONNECTION:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-ERROR-INVALID-CONNECTION:CAPS"> +<ANCHOR id="NM-SECRET-AGENT-ERROR-USER-CANCELED:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-ERROR-USER-CANCELED:CAPS"> +<ANCHOR id="NM-SECRET-AGENT-ERROR-AGENT-CANCELED:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-ERROR-AGENT-CANCELED:CAPS"> +<ANCHOR id="NM-SECRET-AGENT-ERROR-INTERNAL-ERROR:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-ERROR-INTERNAL-ERROR:CAPS"> +<ANCHOR id="NM-SECRET-AGENT-ERROR-NO-SECRETS:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-ERROR-NO-SECRETS:CAPS"> <ANCHOR id="NMSecretAgentCapabilities" href="libnm-glib/NMSecretAgent.html#NMSecretAgentCapabilities"> +<ANCHOR id="NM-SECRET-AGENT-CAPABILITY-NONE:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-CAPABILITY-NONE:CAPS"> +<ANCHOR id="NM-SECRET-AGENT-CAPABILITY-VPN-HINTS:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-CAPABILITY-VPN-HINTS:CAPS"> +<ANCHOR id="NM-SECRET-AGENT-CAPABILITY-LAST:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-CAPABILITY-LAST:CAPS"> <ANCHOR id="NMSecretAgentGetSecretsFlags" href="libnm-glib/NMSecretAgent.html#NMSecretAgentGetSecretsFlags"> +<ANCHOR id="NM-SECRET-AGENT-GET-SECRETS-FLAG-NONE:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-GET-SECRETS-FLAG-NONE:CAPS"> +<ANCHOR id="NM-SECRET-AGENT-GET-SECRETS-FLAG-ALLOW-INTERACTION:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-GET-SECRETS-FLAG-ALLOW-INTERACTION:CAPS"> +<ANCHOR id="NM-SECRET-AGENT-GET-SECRETS-FLAG-REQUEST-NEW:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-GET-SECRETS-FLAG-REQUEST-NEW:CAPS"> +<ANCHOR id="NM-SECRET-AGENT-GET-SECRETS-FLAG-USER-REQUESTED:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-GET-SECRETS-FLAG-USER-REQUESTED:CAPS"> <ANCHOR id="NM-SECRET-AGENT-IDENTIFIER:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-IDENTIFIER:CAPS"> <ANCHOR id="NM-SECRET-AGENT-AUTO-REGISTER:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-AUTO-REGISTER:CAPS"> <ANCHOR id="NM-SECRET-AGENT-REGISTERED:CAPS" href="libnm-glib/NMSecretAgent.html#NM-SECRET-AGENT-REGISTERED:CAPS"> @@ -884,6 +989,16 @@ <ANCHOR id="NM-VPN-PLUGIN-DBUS-SERVICE-NAME:CAPS" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-DBUS-SERVICE-NAME:CAPS"> <ANCHOR id="NM-VPN-PLUGIN-STATE:CAPS" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-STATE:CAPS"> <ANCHOR id="NMVPNPluginError" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NMVPNPluginError"> +<ANCHOR id="NM-VPN-PLUGIN-ERROR-GENERAL:CAPS" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-GENERAL:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-ERROR-STARTING-IN-PROGRESS:CAPS" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-STARTING-IN-PROGRESS:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-ERROR-ALREADY-STARTED:CAPS" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-ALREADY-STARTED:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-ERROR-STOPPING-IN-PROGRESS:CAPS" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-STOPPING-IN-PROGRESS:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-ERROR-ALREADY-STOPPED:CAPS" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-ALREADY-STOPPED:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-ERROR-WRONG-STATE:CAPS" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-WRONG-STATE:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-ERROR-BAD-ARGUMENTS:CAPS" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-BAD-ARGUMENTS:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-ERROR-LAUNCH-FAILED:CAPS" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-LAUNCH-FAILED:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-ERROR-CONNECTION-INVALID:CAPS" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-CONNECTION-INVALID:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-ERROR-INTERACTIVE-NOT-SUPPORTED:CAPS" href="libnm-glib/libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-INTERACTIVE-NOT-SUPPORTED:CAPS"> <ANCHOR id="libnm-glib-NMVpnPluginUiWidget" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html"> <ANCHOR id="libnm-glib-NMVpnPluginUiWidget.functions" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#libnm-glib-NMVpnPluginUiWidget.functions"> <ANCHOR id="libnm-glib-NMVpnPluginUiWidget.other" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#libnm-glib-NMVpnPluginUiWidget.other"> @@ -902,10 +1017,18 @@ <ANCHOR id="nm-vpn-plugin-ui-widget-interface-save-secrets" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#nm-vpn-plugin-ui-widget-interface-save-secrets"> <ANCHOR id="libnm-glib-NMVpnPluginUiWidget.other_details" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#libnm-glib-NMVpnPluginUiWidget.other_details"> <ANCHOR id="NMVpnPluginUiCapability" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NMVpnPluginUiCapability"> +<ANCHOR id="NM-VPN-PLUGIN-UI-CAPABILITY-NONE:CAPS" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-CAPABILITY-NONE:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-UI-CAPABILITY-IMPORT:CAPS" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-CAPABILITY-IMPORT:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-UI-CAPABILITY-EXPORT:CAPS" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-CAPABILITY-EXPORT:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-UI-CAPABILITY-IPV6:CAPS" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-CAPABILITY-IPV6:CAPS"> <ANCHOR id="NM-VPN-PLUGIN-UI-INTERFACE-NAME:CAPS" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-INTERFACE-NAME:CAPS"> <ANCHOR id="NM-VPN-PLUGIN-UI-INTERFACE-DESC:CAPS" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-INTERFACE-DESC:CAPS"> <ANCHOR id="NM-VPN-PLUGIN-UI-INTERFACE-SERVICE:CAPS" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-INTERFACE-SERVICE:CAPS"> <ANCHOR id="NMVpnPluginUiInterfaceProp" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NMVpnPluginUiInterfaceProp"> +<ANCHOR id="NM-VPN-PLUGIN-UI-INTERFACE-PROP-FIRST:CAPS" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-INTERFACE-PROP-FIRST:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-UI-INTERFACE-PROP-NAME:CAPS" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-INTERFACE-PROP-NAME:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-UI-INTERFACE-PROP-DESC:CAPS" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-INTERFACE-PROP-DESC:CAPS"> +<ANCHOR id="NM-VPN-PLUGIN-UI-INTERFACE-PROP-SERVICE:CAPS" href="libnm-glib/libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-INTERFACE-PROP-SERVICE:CAPS"> <ANCHOR id="libnm-glib-nm-vpn-plugin-utils" href="libnm-glib/libnm-glib-nm-vpn-plugin-utils.html"> <ANCHOR id="libnm-glib-nm-vpn-plugin-utils.functions" href="libnm-glib/libnm-glib-nm-vpn-plugin-utils.html#libnm-glib-nm-vpn-plugin-utils.functions"> <ANCHOR id="libnm-glib-nm-vpn-plugin-utils.description" href="libnm-glib/libnm-glib-nm-vpn-plugin-utils.html#libnm-glib-nm-vpn-plugin-utils.description"> @@ -919,6 +1042,8 @@ <ANCHOR id="annotation-glossterm-element-type" href="libnm-glib/annotation-glossary.html#annotation-glossterm-element-type"> <ANCHOR id="annotation-glossterm-out" href="libnm-glib/annotation-glossary.html#annotation-glossterm-out"> <ANCHOR id="annotation-glossterm-scope async" href="libnm-glib/annotation-glossary.html#annotation-glossterm-scope async"> +<ANCHOR id="annotation-glossterm-skip" href="libnm-glib/annotation-glossary.html#annotation-glossterm-skip"> <ANCHOR id="annotation-glossterm-transfer container" href="libnm-glib/annotation-glossary.html#annotation-glossterm-transfer container"> <ANCHOR id="annotation-glossterm-transfer full" href="libnm-glib/annotation-glossary.html#annotation-glossterm-transfer full"> <ANCHOR id="annotation-glossterm-transfer none" href="libnm-glib/annotation-glossary.html#annotation-glossterm-transfer none"> +<ANCHOR id="annotation-glossterm-type" href="libnm-glib/annotation-glossary.html#annotation-glossterm-type"> diff --git a/docs/libnm-glib/html/libnm-glib-NMVPNPlugin.html b/docs/libnm-glib/html/libnm-glib-NMVPNPlugin.html index b64ade5b..e0523b6f 100644 --- a/docs/libnm-glib/html/libnm-glib-NMVPNPlugin.html +++ b/docs/libnm-glib/html/libnm-glib-NMVPNPlugin.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMVPNPlugin</title> +<title>NMVPNPlugin: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMVPNConnection.html" title="NMVPNConnection"> <link rel="next" href="libnm-glib-NMVpnPluginUiWidget.html" title="NMVpnPluginUiWidget"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -155,8 +155,6 @@ </div> <div class="refsect1"> <a name="libnm-glib-NMVPNPlugin.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="libnm-glib-NMVPNPlugin.functions_details"></a><h2>Functions</h2> @@ -164,36 +162,18 @@ <a name="nm-vpn-plugin-error-quark"></a><h3>nm_vpn_plugin_error_quark ()</h3> <pre class="programlisting"><span class="returnvalue">GQuark</span> nm_vpn_plugin_error_quark (<em class="parameter"><code><span class="type">void</span></code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.30.6.2.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> <a name="nm-vpn-plugin-get-connection"></a><h3>nm_vpn_plugin_get_connection ()</h3> <pre class="programlisting"><a href="/usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGConnection.html#DBusGConnection"><span class="returnvalue">DBusGConnection</span></a> * nm_vpn_plugin_get_connection (<em class="parameter"><code><span class="type">NMVPNPlugin</span> *plugin</code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.30.6.3.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> <a name="nm-vpn-plugin-get-state"></a><h3>nm_vpn_plugin_get_state ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/libnm-util/0.9/libnm-util-NetworkManagerVPN.html#NMVPNServiceState"><span class="returnvalue">NMVPNServiceState</span></a> nm_vpn_plugin_get_state (<em class="parameter"><code><span class="type">NMVPNPlugin</span> *plugin</code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.30.6.4.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> @@ -201,8 +181,6 @@ nm_vpn_plugin_get_state (<em class="parameter"><code><span class="type">NMVPNPlu <pre class="programlisting"><span class="returnvalue">void</span> nm_vpn_plugin_set_state (<em class="parameter"><code><span class="type">NMVPNPlugin</span> *plugin</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/libnm-util/0.9/libnm-util-NetworkManagerVPN.html#NMVPNServiceState"><span class="type">NMVPNServiceState</span></a> state</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -243,7 +221,7 @@ information to complete the request.</p> </tbody> </table></div> </div> -<p class="since">Since 0.9.10</p> +<p class="since">Since: 0.9.10</p> </div> <hr> <div class="refsect2"> @@ -251,8 +229,6 @@ information to complete the request.</p> <pre class="programlisting"><span class="returnvalue">void</span> nm_vpn_plugin_set_login_banner (<em class="parameter"><code><span class="type">NMVPNPlugin</span> *plugin</code></em>, <em class="parameter"><code>const <span class="type">char</span> *banner</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -260,8 +236,6 @@ nm_vpn_plugin_set_login_banner (<em class="parameter"><code><span class="type">N <pre class="programlisting"><span class="returnvalue">void</span> nm_vpn_plugin_failure (<em class="parameter"><code><span class="type">NMVPNPlugin</span> *plugin</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/libnm-util/0.9/libnm-util-NetworkManagerVPN.html#NMVPNPluginFailure"><span class="type">NMVPNPluginFailure</span></a> reason</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -269,8 +243,6 @@ nm_vpn_plugin_failure (<em class="parameter"><code><span class="type">NMVPNPlugi <pre class="programlisting"><span class="returnvalue">void</span> nm_vpn_plugin_set_config (<em class="parameter"><code><span class="type">NMVPNPlugin</span> *plugin</code></em>, <em class="parameter"><code><span class="type">GHashTable</span> *config</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -278,8 +250,6 @@ nm_vpn_plugin_set_config (<em class="parameter"><code><span class="type">NMVPNPl <pre class="programlisting"><span class="returnvalue">void</span> nm_vpn_plugin_set_ip4_config (<em class="parameter"><code><span class="type">NMVPNPlugin</span> *plugin</code></em>, <em class="parameter"><code><span class="type">GHashTable</span> *ip4_config</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -287,8 +257,6 @@ nm_vpn_plugin_set_ip4_config (<em class="parameter"><code><span class="type">NMV <pre class="programlisting"><span class="returnvalue">void</span> nm_vpn_plugin_set_ip6_config (<em class="parameter"><code><span class="type">NMVPNPlugin</span> *plugin</code></em>, <em class="parameter"><code><span class="type">GHashTable</span> *ip6_config</code></em>);</pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -296,12 +264,6 @@ nm_vpn_plugin_set_ip6_config (<em class="parameter"><code><span class="type">NMV <pre class="programlisting"><span class="returnvalue">gboolean</span> nm_vpn_plugin_disconnect (<em class="parameter"><code><span class="type">NMVPNPlugin</span> *plugin</code></em>, <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.30.6.12.5"></a><h4>Returns</h4> -<p></p> -</div> </div> </div> <div class="refsect1"> @@ -310,16 +272,12 @@ nm_vpn_plugin_disconnect (<em class="parameter"><code><span class="type">NMVPNPl <a name="NM-VPN-PLUGIN-DBUS-SERVICE-NAME:CAPS"></a><h3>NM_VPN_PLUGIN_DBUS_SERVICE_NAME</h3> <pre class="programlisting">#define NM_VPN_PLUGIN_DBUS_SERVICE_NAME "service-name" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-VPN-PLUGIN-STATE:CAPS"></a><h3>NM_VPN_PLUGIN_STATE</h3> <pre class="programlisting">#define NM_VPN_PLUGIN_STATE "state" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -423,7 +381,6 @@ nm_vpn_plugin_disconnect (<em class="parameter"><code><span class="type">NMVPNPl </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/libnm-glib-NMVpnPluginUiWidget.html b/docs/libnm-glib/html/libnm-glib-NMVpnPluginUiWidget.html index 95d75061..e4630fed 100644 --- a/docs/libnm-glib/html/libnm-glib-NMVpnPluginUiWidget.html +++ b/docs/libnm-glib/html/libnm-glib-NMVpnPluginUiWidget.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: NMVpnPluginUiWidget</title> +<title>NMVpnPluginUiWidget: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="libnm-glib-NMVPNPlugin.html" title="NMVPNPlugin"> <link rel="next" href="libnm-glib-nm-vpn-plugin-utils.html" title="nm-vpn-plugin-utils"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -163,8 +163,6 @@ </div> <div class="refsect1"> <a name="libnm-glib-NMVpnPluginUiWidget.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="libnm-glib-NMVpnPluginUiWidget.functions_details"></a><h2>Functions</h2> @@ -172,24 +170,12 @@ <a name="NMVpnPluginUiFactory"></a><h3>NMVpnPluginUiFactory ()</h3> <pre class="programlisting"><span class="returnvalue">NMVpnPluginUiInterface</span> * <span class="c_punctuation">(</span>*NMVpnPluginUiFactory<span class="c_punctuation">)</span> (<em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.31.6.2.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> <a name="nm-vpn-plugin-ui-factory"></a><h3>nm_vpn_plugin_ui_factory ()</h3> <pre class="programlisting"><span class="returnvalue">NMVpnPluginUiInterface</span> * nm_vpn_plugin_ui_factory (<em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.31.6.3.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> @@ -198,12 +184,6 @@ nm_vpn_plugin_ui_factory (<em class="parameter"><code><span class="type">GError< nm_vpn_plugin_ui_interface_ui_factory (<em class="parameter"><code><span class="type">NMVpnPluginUiInterface</span> *iface</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html"><span class="type">NMConnection</span></a> *connection</code></em>, <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.31.6.4.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> @@ -211,12 +191,6 @@ nm_vpn_plugin_ui_interface_ui_factory (<em class="parameter"><code><span class=" <pre class="programlisting"><span class="returnvalue">guint32</span> nm_vpn_plugin_ui_interface_get_capabilities (<em class="parameter"><code><span class="type">NMVpnPluginUiInterface</span> *iface</code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.31.6.5.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> @@ -225,12 +199,6 @@ nm_vpn_plugin_ui_interface_get_capabilities nm_vpn_plugin_ui_interface_import (<em class="parameter"><code><span class="type">NMVpnPluginUiInterface</span> *iface</code></em>, <em class="parameter"><code>const <span class="type">char</span> *path</code></em>, <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.31.6.6.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> @@ -240,12 +208,6 @@ nm_vpn_plugin_ui_interface_export (<em class="parameter"><code><span class="type <em class="parameter"><code>const <span class="type">char</span> *path</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html"><span class="type">NMConnection</span></a> *connection</code></em>, <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.31.6.7.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> @@ -254,12 +216,6 @@ nm_vpn_plugin_ui_interface_export (<em class="parameter"><code><span class="type nm_vpn_plugin_ui_interface_get_suggested_name (<em class="parameter"><code><span class="type">NMVpnPluginUiInterface</span> *iface</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html"><span class="type">NMConnection</span></a> *connection</code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.31.6.8.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> @@ -270,12 +226,6 @@ nm_vpn_plugin_ui_interface_delete_connection <em class="parameter"><code><a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html"><span class="type">NMConnection</span></a> *connection</code></em>, <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre> <div class="warning"><p><code class="literal">nm_vpn_plugin_ui_interface_delete_connection</code> is deprecated and should not be used in newly-written code.</p></div> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.31.6.9.6"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> @@ -283,12 +233,6 @@ nm_vpn_plugin_ui_interface_delete_connection <pre class="programlisting"><span class="returnvalue">GObject</span> * nm_vpn_plugin_ui_widget_interface_get_widget (<em class="parameter"><code><span class="type">NMVpnPluginUiWidgetInterface</span> *iface</code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.31.6.10.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> @@ -298,12 +242,6 @@ nm_vpn_plugin_ui_widget_interface_update_connection (<em class="parameter"><code><span class="type">NMVpnPluginUiWidgetInterface</span> *iface</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html"><span class="type">NMConnection</span></a> *connection</code></em>, <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.31.6.11.5"></a><h4>Returns</h4> -<p></p> -</div> </div> <hr> <div class="refsect2"> @@ -314,12 +252,6 @@ nm_vpn_plugin_ui_widget_interface_save_secrets <em class="parameter"><code><a href="https://developer.gnome.org/libnm-util/0.9/NMConnection.html"><span class="type">NMConnection</span></a> *connection</code></em>, <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre> <div class="warning"><p><code class="literal">nm_vpn_plugin_ui_widget_interface_save_secrets</code> is deprecated and should not be used in newly-written code.</p></div> -<p> -</p> -<div class="refsect3"> -<a name="id-1.3.31.6.12.6"></a><h4>Returns</h4> -<p></p> -</div> </div> </div> <div class="refsect1"> @@ -373,24 +305,18 @@ nm_vpn_plugin_ui_widget_interface_save_secrets <a name="NM-VPN-PLUGIN-UI-INTERFACE-NAME:CAPS"></a><h3>NM_VPN_PLUGIN_UI_INTERFACE_NAME</h3> <pre class="programlisting">#define NM_VPN_PLUGIN_UI_INTERFACE_NAME "name" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-VPN-PLUGIN-UI-INTERFACE-DESC:CAPS"></a><h3>NM_VPN_PLUGIN_UI_INTERFACE_DESC</h3> <pre class="programlisting">#define NM_VPN_PLUGIN_UI_INTERFACE_DESC "desc" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> <a name="NM-VPN-PLUGIN-UI-INTERFACE-SERVICE:CAPS"></a><h3>NM_VPN_PLUGIN_UI_INTERFACE_SERVICE</h3> <pre class="programlisting">#define NM_VPN_PLUGIN_UI_INTERFACE_SERVICE "service" </pre> -<p> -</p> </div> <hr> <div class="refsect2"> @@ -408,8 +334,8 @@ information to UI programs.</p> <tbody> <tr> <td class="enum_member_name"><p><a name="NM-VPN-PLUGIN-UI-INTERFACE-PROP-FIRST:CAPS"></a>NM_VPN_PLUGIN_UI_INTERFACE_PROP_FIRST</p></td> -<td class="enum_member_description"> </td> -<td class="enum_member_annotations"> </td> +<td> </td> +<td> </td> </tr> <tr> <td class="enum_member_name"><p><a name="NM-VPN-PLUGIN-UI-INTERFACE-PROP-NAME:CAPS"></a>NM_VPN_PLUGIN_UI_INTERFACE_PROP_NAME</p></td> @@ -441,7 +367,6 @@ plugin's VPN service daemon</p> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/libnm-glib-nm-types.html b/docs/libnm-glib/html/libnm-glib-nm-types.html index c8ee10a3..9c3dce35 100644 --- a/docs/libnm-glib/html/libnm-glib-nm-types.html +++ b/docs/libnm-glib/html/libnm-glib-nm-types.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: nm-types</title> +<title>nm-types: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="NMRemoteSettings.html" title="NMRemoteSettings"> <link rel="next" href="NMSecretAgent.html" title="NMSecretAgent"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -33,18 +33,16 @@ </tr></table></div> <div class="refsect1"> <a name="libnm-glib-nm-types.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="libnm-glib-nm-types.functions_details"></a><h2>Functions</h2> +<p></p> </div> <div class="refsect1"> <a name="libnm-glib-nm-types.other_details"></a><h2>Types and Values</h2> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/libnm-glib-nm-vpn-plugin-utils.html b/docs/libnm-glib/html/libnm-glib-nm-vpn-plugin-utils.html index 0a53334e..b03e5987 100644 --- a/docs/libnm-glib/html/libnm-glib-nm-vpn-plugin-utils.html +++ b/docs/libnm-glib/html/libnm-glib-nm-vpn-plugin-utils.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: nm-vpn-plugin-utils</title> +<title>nm-vpn-plugin-utils: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="ch02.html" title="libnm-glib API Reference"> <link rel="prev" href="libnm-glib-NMVpnPluginUiWidget.html" title="NMVpnPluginUiWidget"> <link rel="next" href="object-tree.html" title="Object Hierarchy"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -60,8 +60,6 @@ </div> <div class="refsect1"> <a name="libnm-glib-nm-vpn-plugin-utils.description"></a><h2>Description</h2> -<p> -</p> </div> <div class="refsect1"> <a name="libnm-glib-nm-vpn-plugin-utils.functions_details"></a><h2>Functions</h2> @@ -105,7 +103,6 @@ an applet when the applet calls the authentication dialog of the VPN plugin.</p> <div class="refsect3"> <a name="id-1.3.32.5.2.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if reading values was successful, <code class="literal">FALSE</code> if not</p> -<p></p> </div> </div> <hr> @@ -151,7 +148,6 @@ item in <em class="parameter"><code>data</code></em> <a name="id-1.3.32.5.3.6"></a><h4>Returns</h4> <p> <code class="literal">TRUE</code> if the flag data item was found and successfully converted to flags, <code class="literal">FALSE</code> if not</p> -<p></p> </div> </div> </div> @@ -160,7 +156,6 @@ to flags, <code class="literal">FALSE</code> if not</p> </div> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/libnm-glib.devhelp2 b/docs/libnm-glib/html/libnm-glib.devhelp2 index 8c4d8202..00b0f075 100644 --- a/docs/libnm-glib/html/libnm-glib.devhelp2 +++ b/docs/libnm-glib/html/libnm-glib.devhelp2 @@ -1,5 +1,4 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> -<!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ""> <book xmlns="http://www.devhelp.net/book" title="libnm-glib Reference Manual" link="index.html" author="" name="libnm-glib" version="2" language="c"> <chapters> <sub name="Object Overview" link="ref-overview.html"/> @@ -672,5 +671,128 @@ <keyword type="enum" name="enum NMVpnPluginUiInterfaceProp" link="libnm-glib-NMVpnPluginUiWidget.html#NMVpnPluginUiInterfaceProp"/> <keyword type="function" name="nm_vpn_plugin_utils_read_vpn_details ()" link="libnm-glib-nm-vpn-plugin-utils.html#nm-vpn-plugin-utils-read-vpn-details"/> <keyword type="function" name="nm_vpn_plugin_utils_get_secret_flags ()" link="libnm-glib-nm-vpn-plugin-utils.html#nm-vpn-plugin-utils-get-secret-flags"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_NONE" link="NMClient.html#NM-CLIENT-PERMISSION-NONE:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_ENABLE_DISABLE_NETWORK" link="NMClient.html#NM-CLIENT-PERMISSION-ENABLE-DISABLE-NETWORK:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_ENABLE_DISABLE_WIFI" link="NMClient.html#NM-CLIENT-PERMISSION-ENABLE-DISABLE-WIFI:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_ENABLE_DISABLE_WWAN" link="NMClient.html#NM-CLIENT-PERMISSION-ENABLE-DISABLE-WWAN:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_ENABLE_DISABLE_WIMAX" link="NMClient.html#NM-CLIENT-PERMISSION-ENABLE-DISABLE-WIMAX:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_SLEEP_WAKE" link="NMClient.html#NM-CLIENT-PERMISSION-SLEEP-WAKE:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_NETWORK_CONTROL" link="NMClient.html#NM-CLIENT-PERMISSION-NETWORK-CONTROL:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_WIFI_SHARE_PROTECTED" link="NMClient.html#NM-CLIENT-PERMISSION-WIFI-SHARE-PROTECTED:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_WIFI_SHARE_OPEN" link="NMClient.html#NM-CLIENT-PERMISSION-WIFI-SHARE-OPEN:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_SETTINGS_MODIFY_SYSTEM" link="NMClient.html#NM-CLIENT-PERMISSION-SETTINGS-MODIFY-SYSTEM:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_SETTINGS_MODIFY_OWN" link="NMClient.html#NM-CLIENT-PERMISSION-SETTINGS-MODIFY-OWN:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_SETTINGS_MODIFY_HOSTNAME" link="NMClient.html#NM-CLIENT-PERMISSION-SETTINGS-MODIFY-HOSTNAME:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_LAST" link="NMClient.html#NM-CLIENT-PERMISSION-LAST:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_RESULT_UNKNOWN" link="NMClient.html#NM-CLIENT-PERMISSION-RESULT-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_RESULT_YES" link="NMClient.html#NM-CLIENT-PERMISSION-RESULT-YES:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_RESULT_AUTH" link="NMClient.html#NM-CLIENT-PERMISSION-RESULT-AUTH:CAPS"/> + <keyword type="constant" name="NM_CLIENT_PERMISSION_RESULT_NO" link="NMClient.html#NM-CLIENT-PERMISSION-RESULT-NO:CAPS"/> + <keyword type="constant" name="NM_CLIENT_ERROR_UNKNOWN" link="NMClient.html#NM-CLIENT-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_CLIENT_ERROR_MANAGER_NOT_RUNNING" link="NMClient.html#NM-CLIENT-ERROR-MANAGER-NOT-RUNNING:CAPS"/> + <keyword type="constant" name="NM_DEVICE_ERROR_UNKNOWN" link="NMDevice.html#NM-DEVICE-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_ERROR_INTERFACE_MISMATCH" link="NMDevice.html#NM-DEVICE-ERROR-INTERFACE-MISMATCH:CAPS"/> + <keyword type="constant" name="NM_DEVICE_ETHERNET_ERROR_UNKNOWN" link="NMDeviceEthernet.html#NM-DEVICE-ETHERNET-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_ETHERNET_ERROR_NOT_ETHERNET_CONNECTION" link="NMDeviceEthernet.html#NM-DEVICE-ETHERNET-ERROR-NOT-ETHERNET-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_ETHERNET_ERROR_INVALID_ETHERNET_CONNECTION" link="NMDeviceEthernet.html#NM-DEVICE-ETHERNET-ERROR-INVALID-ETHERNET-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_ETHERNET_ERROR_INVALID_DEVICE_MAC" link="NMDeviceEthernet.html#NM-DEVICE-ETHERNET-ERROR-INVALID-DEVICE-MAC:CAPS"/> + <keyword type="constant" name="NM_DEVICE_ETHERNET_ERROR_MAC_MISMATCH" link="NMDeviceEthernet.html#NM-DEVICE-ETHERNET-ERROR-MAC-MISMATCH:CAPS"/> + <keyword type="constant" name="NM_DEVICE_WIFI_ERROR_UNKNOWN" link="NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_WIFI_ERROR_NOT_WIFI_CONNECTION" link="NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-NOT-WIFI-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_WIFI_ERROR_INVALID_WIFI_CONNECTION" link="NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-INVALID-WIFI-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_WIFI_ERROR_INVALID_DEVICE_MAC" link="NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-INVALID-DEVICE-MAC:CAPS"/> + <keyword type="constant" name="NM_DEVICE_WIFI_ERROR_MAC_MISMATCH" link="NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-MAC-MISMATCH:CAPS"/> + <keyword type="constant" name="NM_DEVICE_WIFI_ERROR_MISSING_DEVICE_WPA_CAPS" link="NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-MISSING-DEVICE-WPA-CAPS"/> + <keyword type="constant" name="NM_DEVICE_WIFI_ERROR_MISSING_DEVICE_RSN_CAPS" link="NMDeviceWifi.html#NM-DEVICE-WIFI-ERROR-MISSING-DEVICE-RSN-CAPS"/> + <keyword type="constant" name="NM_DEVICE_MODEM_ERROR_UNKNOWN" link="NMDeviceModem.html#NM-DEVICE-MODEM-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_MODEM_ERROR_NOT_MODEM_CONNECTION" link="NMDeviceModem.html#NM-DEVICE-MODEM-ERROR-NOT-MODEM-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_MODEM_ERROR_INVALID_MODEM_CONNECTION" link="NMDeviceModem.html#NM-DEVICE-MODEM-ERROR-INVALID-MODEM-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_MODEM_ERROR_MISSING_DEVICE_CAPS" link="NMDeviceModem.html#NM-DEVICE-MODEM-ERROR-MISSING-DEVICE-CAPS"/> + <keyword type="constant" name="NM_DEVICE_BT_ERROR_UNKNOWN" link="NMDeviceBt.html#NM-DEVICE-BT-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BT_ERROR_NOT_BT_CONNECTION" link="NMDeviceBt.html#NM-DEVICE-BT-ERROR-NOT-BT-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BT_ERROR_INVALID_BT_CONNECTION" link="NMDeviceBt.html#NM-DEVICE-BT-ERROR-INVALID-BT-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BT_ERROR_INVALID_DEVICE_MAC" link="NMDeviceBt.html#NM-DEVICE-BT-ERROR-INVALID-DEVICE-MAC:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BT_ERROR_MAC_MISMATCH" link="NMDeviceBt.html#NM-DEVICE-BT-ERROR-MAC-MISMATCH:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BT_ERROR_MISSING_DEVICE_CAPS" link="NMDeviceBt.html#NM-DEVICE-BT-ERROR-MISSING-DEVICE-CAPS"/> + <keyword type="constant" name="NM_DEVICE_WIMAX_ERROR_UNKNOWN" link="NMDeviceWimax.html#NM-DEVICE-WIMAX-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_WIMAX_ERROR_NOT_WIMAX_CONNECTION" link="NMDeviceWimax.html#NM-DEVICE-WIMAX-ERROR-NOT-WIMAX-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_WIMAX_ERROR_INVALID_WIMAX_CONNECTION" link="NMDeviceWimax.html#NM-DEVICE-WIMAX-ERROR-INVALID-WIMAX-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_WIMAX_ERROR_INVALID_DEVICE_MAC" link="NMDeviceWimax.html#NM-DEVICE-WIMAX-ERROR-INVALID-DEVICE-MAC:CAPS"/> + <keyword type="constant" name="NM_DEVICE_WIMAX_ERROR_MAC_MISMATCH" link="NMDeviceWimax.html#NM-DEVICE-WIMAX-ERROR-MAC-MISMATCH:CAPS"/> + <keyword type="constant" name="NM_DEVICE_ADSL_ERROR_UNKNOWN" link="NMDeviceAdsl.html#NM-DEVICE-ADSL-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_ADSL_ERROR_NOT_ADSL_CONNECTION" link="NMDeviceAdsl.html#NM-DEVICE-ADSL-ERROR-NOT-ADSL-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_ADSL_ERROR_INVALID_ADSL_CONNECTION" link="NMDeviceAdsl.html#NM-DEVICE-ADSL-ERROR-INVALID-ADSL-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BOND_ERROR_UNKNOWN" link="NMDeviceBond.html#NM-DEVICE-BOND-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BOND_ERROR_NOT_BOND_CONNECTION" link="NMDeviceBond.html#NM-DEVICE-BOND-ERROR-NOT-BOND-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BOND_ERROR_INVALID_BOND_CONNECTION" link="NMDeviceBond.html#NM-DEVICE-BOND-ERROR-INVALID-BOND-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BOND_ERROR_INTERFACE_MISMATCH" link="NMDeviceBond.html#NM-DEVICE-BOND-ERROR-INTERFACE-MISMATCH:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BRIDGE_ERROR_UNKNOWN" link="NMDeviceBridge.html#NM-DEVICE-BRIDGE-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BRIDGE_ERROR_NOT_BRIDGE_CONNECTION" link="NMDeviceBridge.html#NM-DEVICE-BRIDGE-ERROR-NOT-BRIDGE-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BRIDGE_ERROR_INVALID_BRIDGE_CONNECTION" link="NMDeviceBridge.html#NM-DEVICE-BRIDGE-ERROR-INVALID-BRIDGE-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_BRIDGE_ERROR_INTERFACE_MISMATCH" link="NMDeviceBridge.html#NM-DEVICE-BRIDGE-ERROR-INTERFACE-MISMATCH:CAPS"/> + <keyword type="constant" name="NM_DEVICE_TEAM_ERROR_UNKNOWN" link="NMDeviceTeam.html#NM-DEVICE-TEAM-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_TEAM_ERROR_NOT_TEAM_CONNECTION" link="NMDeviceTeam.html#NM-DEVICE-TEAM-ERROR-NOT-TEAM-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_TEAM_ERROR_INVALID_TEAM_CONNECTION" link="NMDeviceTeam.html#NM-DEVICE-TEAM-ERROR-INVALID-TEAM-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_TEAM_ERROR_INTERFACE_MISMATCH" link="NMDeviceTeam.html#NM-DEVICE-TEAM-ERROR-INTERFACE-MISMATCH:CAPS"/> + <keyword type="constant" name="NM_DEVICE_GENERIC_ERROR_UNKNOWN" link="NMDeviceGeneric.html#NM-DEVICE-GENERIC-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_GENERIC_ERROR_NOT_GENERIC_CONNECTION" link="NMDeviceGeneric.html#NM-DEVICE-GENERIC-ERROR-NOT-GENERIC-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_GENERIC_ERROR_MISSING_INTERFACE_NAME" link="NMDeviceGeneric.html#NM-DEVICE-GENERIC-ERROR-MISSING-INTERFACE-NAME:CAPS"/> + <keyword type="constant" name="NM_DEVICE_INFINIBAND_ERROR_UNKNOWN" link="NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_INFINIBAND_ERROR_NOT_INFINIBAND_CONNECTION" link="NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-ERROR-NOT-INFINIBAND-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_INFINIBAND_ERROR_INVALID_INFINIBAND_CONNECTION" link="NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-ERROR-INVALID-INFINIBAND-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_INFINIBAND_ERROR_INVALID_DEVICE_MAC" link="NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-ERROR-INVALID-DEVICE-MAC:CAPS"/> + <keyword type="constant" name="NM_DEVICE_INFINIBAND_ERROR_MAC_MISMATCH" link="NMDeviceInfiniband.html#NM-DEVICE-INFINIBAND-ERROR-MAC-MISMATCH:CAPS"/> + <keyword type="constant" name="NM_DEVICE_VLAN_ERROR_UNKNOWN" link="NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_VLAN_ERROR_NOT_VLAN_CONNECTION" link="NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR-NOT-VLAN-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_VLAN_ERROR_INVALID_VLAN_CONNECTION" link="NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR-INVALID-VLAN-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_VLAN_ERROR_ID_MISMATCH" link="NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR-ID-MISMATCH:CAPS"/> + <keyword type="constant" name="NM_DEVICE_VLAN_ERROR_INTERFACE_MISMATCH" link="NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR-INTERFACE-MISMATCH:CAPS"/> + <keyword type="constant" name="NM_DEVICE_VLAN_ERROR_MAC_MISMATCH" link="NMDeviceVlan.html#NM-DEVICE-VLAN-ERROR-MAC-MISMATCH:CAPS"/> + <keyword type="constant" name="NM_DEVICE_OLPC_MESH_ERROR_UNKNOWN" link="NMDeviceOlpcMesh.html#NM-DEVICE-OLPC-MESH-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_DEVICE_OLPC_MESH_ERROR_NOT_OLPC_MESH_CONNECTION" link="NMDeviceOlpcMesh.html#NM-DEVICE-OLPC-MESH-ERROR-NOT-OLPC-MESH-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_DEVICE_OLPC_MESH_ERROR_INVALID_OLPC_MESH_CONNECTION" link="NMDeviceOlpcMesh.html#NM-DEVICE-OLPC-MESH-ERROR-INVALID-OLPC-MESH-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_WIMAX_NSP_NETWORK_TYPE_UNKNOWN" link="NMWimaxNsp.html#NM-WIMAX-NSP-NETWORK-TYPE-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_WIMAX_NSP_NETWORK_TYPE_HOME" link="NMWimaxNsp.html#NM-WIMAX-NSP-NETWORK-TYPE-HOME:CAPS"/> + <keyword type="constant" name="NM_WIMAX_NSP_NETWORK_TYPE_PARTNER" link="NMWimaxNsp.html#NM-WIMAX-NSP-NETWORK-TYPE-PARTNER:CAPS"/> + <keyword type="constant" name="NM_WIMAX_NSP_NETWORK_TYPE_ROAMING_PARTNER" link="NMWimaxNsp.html#NM-WIMAX-NSP-NETWORK-TYPE-ROAMING-PARTNER:CAPS"/> + <keyword type="constant" name="NM_OBJECT_ERROR_UNKNOWN" link="NMObject.html#NM-OBJECT-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_OBJECT_ERROR_OBJECT_CREATION_FAILURE" link="NMObject.html#NM-OBJECT-ERROR-OBJECT-CREATION-FAILURE:CAPS"/> + <keyword type="constant" name="NM_REMOTE_CONNECTION_ERROR_UNKNOWN" link="NMRemoteConnection.html#NM-REMOTE-CONNECTION-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_REMOTE_CONNECTION_ERROR_DISCONNECTED" link="NMRemoteConnection.html#NM-REMOTE-CONNECTION-ERROR-DISCONNECTED:CAPS"/> + <keyword type="constant" name="NM_REMOTE_SETTINGS_ERROR_UNKNOWN" link="NMRemoteSettings.html#NM-REMOTE-SETTINGS-ERROR-UNKNOWN:CAPS"/> + <keyword type="constant" name="NM_REMOTE_SETTINGS_ERROR_CONNECTION_REMOVED" link="NMRemoteSettings.html#NM-REMOTE-SETTINGS-ERROR-CONNECTION-REMOVED:CAPS"/> + <keyword type="constant" name="NM_REMOTE_SETTINGS_ERROR_CONNECTION_UNAVAILABLE" link="NMRemoteSettings.html#NM-REMOTE-SETTINGS-ERROR-CONNECTION-UNAVAILABLE:CAPS"/> + <keyword type="constant" name="NM_REMOTE_SETTINGS_ERROR_SERVICE_UNAVAILABLE" link="NMRemoteSettings.html#NM-REMOTE-SETTINGS-ERROR-SERVICE-UNAVAILABLE:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_ERROR_NOT_AUTHORIZED" link="NMSecretAgent.html#NM-SECRET-AGENT-ERROR-NOT-AUTHORIZED:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_ERROR_INVALID_CONNECTION" link="NMSecretAgent.html#NM-SECRET-AGENT-ERROR-INVALID-CONNECTION:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_ERROR_USER_CANCELED" link="NMSecretAgent.html#NM-SECRET-AGENT-ERROR-USER-CANCELED:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_ERROR_AGENT_CANCELED" link="NMSecretAgent.html#NM-SECRET-AGENT-ERROR-AGENT-CANCELED:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_ERROR_INTERNAL_ERROR" link="NMSecretAgent.html#NM-SECRET-AGENT-ERROR-INTERNAL-ERROR:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_ERROR_NO_SECRETS" link="NMSecretAgent.html#NM-SECRET-AGENT-ERROR-NO-SECRETS:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_CAPABILITY_NONE" link="NMSecretAgent.html#NM-SECRET-AGENT-CAPABILITY-NONE:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_CAPABILITY_VPN_HINTS" link="NMSecretAgent.html#NM-SECRET-AGENT-CAPABILITY-VPN-HINTS:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_CAPABILITY_LAST" link="NMSecretAgent.html#NM-SECRET-AGENT-CAPABILITY-LAST:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_GET_SECRETS_FLAG_NONE" link="NMSecretAgent.html#NM-SECRET-AGENT-GET-SECRETS-FLAG-NONE:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_GET_SECRETS_FLAG_ALLOW_INTERACTION" link="NMSecretAgent.html#NM-SECRET-AGENT-GET-SECRETS-FLAG-ALLOW-INTERACTION:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_GET_SECRETS_FLAG_REQUEST_NEW" link="NMSecretAgent.html#NM-SECRET-AGENT-GET-SECRETS-FLAG-REQUEST-NEW:CAPS"/> + <keyword type="constant" name="NM_SECRET_AGENT_GET_SECRETS_FLAG_USER_REQUESTED" link="NMSecretAgent.html#NM-SECRET-AGENT-GET-SECRETS-FLAG-USER-REQUESTED:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_ERROR_GENERAL" link="libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-GENERAL:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_ERROR_STARTING_IN_PROGRESS" link="libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-STARTING-IN-PROGRESS:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_ERROR_ALREADY_STARTED" link="libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-ALREADY-STARTED:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_ERROR_STOPPING_IN_PROGRESS" link="libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-STOPPING-IN-PROGRESS:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_ERROR_ALREADY_STOPPED" link="libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-ALREADY-STOPPED:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_ERROR_WRONG_STATE" link="libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-WRONG-STATE:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_ERROR_BAD_ARGUMENTS" link="libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-BAD-ARGUMENTS:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_ERROR_LAUNCH_FAILED" link="libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-LAUNCH-FAILED:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_ERROR_CONNECTION_INVALID" link="libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-CONNECTION-INVALID:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_ERROR_INTERACTIVE_NOT_SUPPORTED" link="libnm-glib-NMVPNPlugin.html#NM-VPN-PLUGIN-ERROR-INTERACTIVE-NOT-SUPPORTED:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_UI_CAPABILITY_NONE" link="libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-CAPABILITY-NONE:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_UI_CAPABILITY_IMPORT" link="libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-CAPABILITY-IMPORT:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_UI_CAPABILITY_EXPORT" link="libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-CAPABILITY-EXPORT:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_UI_CAPABILITY_IPV6" link="libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-CAPABILITY-IPV6:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_UI_INTERFACE_PROP_FIRST" link="libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-INTERFACE-PROP-FIRST:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_UI_INTERFACE_PROP_NAME" link="libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-INTERFACE-PROP-NAME:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_UI_INTERFACE_PROP_DESC" link="libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-INTERFACE-PROP-DESC:CAPS"/> + <keyword type="constant" name="NM_VPN_PLUGIN_UI_INTERFACE_PROP_SERVICE" link="libnm-glib-NMVpnPluginUiWidget.html#NM-VPN-PLUGIN-UI-INTERFACE-PROP-SERVICE:CAPS"/> </functions> </book> diff --git a/docs/libnm-glib/html/object-tree.html b/docs/libnm-glib/html/object-tree.html index 500f78d4..c6ea9297 100644 --- a/docs/libnm-glib/html/object-tree.html +++ b/docs/libnm-glib/html/object-tree.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: Object Hierarchy</title> +<title>Object Hierarchy: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="index.html" title="libnm-glib Reference Manual"> <link rel="prev" href="libnm-glib-nm-vpn-plugin-utils.html" title="nm-vpn-plugin-utils"> <link rel="next" href="api-index-full.html" title="API Index"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -55,7 +55,6 @@ </pre> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/ref-overview.html b/docs/libnm-glib/html/ref-overview.html index d3a8c516..fcd4ec99 100644 --- a/docs/libnm-glib/html/ref-overview.html +++ b/docs/libnm-glib/html/ref-overview.html @@ -2,13 +2,13 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>libnm-glib Reference Manual: Object Overview</title> +<title>Object Overview: libnm-glib Reference Manual</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="libnm-glib Reference Manual"> <link rel="up" href="index.html" title="libnm-glib Reference Manual"> <link rel="prev" href="index.html" title="libnm-glib Reference Manual"> <link rel="next" href="ch02.html" title="libnm-glib API Reference"> -<meta name="generator" content="GTK-Doc V1.21 (XML mode)"> +<meta name="generator" content="GTK-Doc V1.24 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -41,7 +41,6 @@ </p> </div> <div class="footer"> -<hr> - Generated by GTK-Doc V1.21</div> +<hr>Generated by GTK-Doc V1.24</div> </body> </html> \ No newline at end of file diff --git a/docs/libnm-glib/html/style.css b/docs/libnm-glib/html/style.css index c141ddd2..36754209 100644 --- a/docs/libnm-glib/html/style.css +++ b/docs/libnm-glib/html/style.css @@ -60,7 +60,7 @@ a:hover div.informaltable table { border-collapse: separate; - border-spacing: 1em 0.5em; + border-spacing: 1em 0.3em; border: none; } @@ -148,6 +148,8 @@ div.table table th h4 { color: #555753; + margin-top: 1em; + margin-bottom: 1em; } hr @@ -166,17 +168,16 @@ dl.toc dt padding-bottom: 0.25em; } -dl.toc > dd > dl > dt +dl.toc > dt { padding-top: 0.25em; padding-bottom: 0.25em; + font-weight: bold; } -dl.toc > dt +dl.toc > dl { - padding-top: 1em; padding-bottom: 0.5em; - font-weight: bold; } .parameter @@ -346,7 +347,9 @@ acronym,abbr } @media screen { - sup a.footnote + /* these have a <sup> as a first child, but since there are no parent selectors + * we can't use that. */ + a.footnote { position: relative; top: 0em ! important; diff --git a/docs/libnm-glib/tmpl/libnm-glib-unused.sgml b/docs/libnm-glib/tmpl/libnm-glib-unused.sgml deleted file mode 100644 index e69de29b..00000000 --- a/docs/libnm-glib/tmpl/libnm-glib-unused.sgml +++ /dev/null diff --git a/docs/libnm-glib/tmpl/nm-access-point.sgml b/docs/libnm-glib/tmpl/nm-access-point.sgml deleted file mode 100644 index 2a2ecb1c..00000000 --- a/docs/libnm-glib/tmpl/nm-access-point.sgml +++ /dev/null @@ -1,214 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMAccessPoint - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### MACRO NM_ACCESS_POINT_FLAGS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACCESS_POINT_WPA_FLAGS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACCESS_POINT_RSN_FLAGS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACCESS_POINT_SSID ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACCESS_POINT_BSSID ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACCESS_POINT_FREQUENCY ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACCESS_POINT_MODE ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACCESS_POINT_MAX_BITRATE ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACCESS_POINT_STRENGTH ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACCESS_POINT_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_access_point_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_access_point_get_flags ##### --> -<para> - -</para> - -@ap: -@Returns: - - -<!-- ##### FUNCTION nm_access_point_get_wpa_flags ##### --> -<para> - -</para> - -@ap: -@Returns: - - -<!-- ##### FUNCTION nm_access_point_get_rsn_flags ##### --> -<para> - -</para> - -@ap: -@Returns: - - -<!-- ##### FUNCTION nm_access_point_get_ssid ##### --> -<para> - -</para> - -@ap: -@Returns: - - -<!-- ##### FUNCTION nm_access_point_get_bssid ##### --> -<para> - -</para> - -@ap: -@Returns: - - -<!-- ##### FUNCTION nm_access_point_get_frequency ##### --> -<para> - -</para> - -@ap: -@Returns: - - -<!-- ##### FUNCTION nm_access_point_get_mode ##### --> -<para> - -</para> - -@ap: -@Returns: - - -<!-- ##### FUNCTION nm_access_point_get_max_bitrate ##### --> -<para> - -</para> - -@ap: -@Returns: - - -<!-- ##### FUNCTION nm_access_point_get_strength ##### --> -<para> - -</para> - -@ap: -@Returns: - - -<!-- ##### FUNCTION nm_access_point_filter_connections ##### --> -<para> - -</para> - -@ap: -@connections: -@Returns: - - -<!-- ##### FUNCTION nm_access_point_connection_valid ##### --> -<para> - -</para> - -@ap: -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_access_point_get_hw_address ##### --> -<para> - -</para> - -@ap: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-active-connection.sgml b/docs/libnm-glib/tmpl/nm-active-connection.sgml deleted file mode 100644 index 8b52c825..00000000 --- a/docs/libnm-glib/tmpl/nm-active-connection.sgml +++ /dev/null @@ -1,274 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMActiveConnection - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_CONNECTION ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_ID ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_UUID ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_TYPE ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_SPECIFIC_OBJECT ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_DEVICES ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_STATE ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_DEFAULT ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_IP4_CONFIG ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_DHCP4_CONFIG ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_DEFAULT6 ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_IP6_CONFIG ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_DHCP6_CONFIG ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_VPN ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_ACTIVE_CONNECTION_MASTER ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_active_connection_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_connection ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_id ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_uuid ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_connection_type ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_specific_object ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_devices ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_state ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_master ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_default ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_ip4_config ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_dhcp4_config ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_default6 ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_ip6_config ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_dhcp6_config ##### --> -<para> - -</para> - -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_active_connection_get_vpn ##### --> -<para> - -</para> - -@connection: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-client.sgml b/docs/libnm-glib/tmpl/nm-client.sgml deleted file mode 100644 index cb1adf09..00000000 --- a/docs/libnm-glib/tmpl/nm-client.sgml +++ /dev/null @@ -1,552 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMClient - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### MACRO NM_CLIENT_VERSION ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_STATE ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_STARTUP ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_MANAGER_RUNNING ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_NETWORKING_ENABLED ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_WIRELESS_ENABLED ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_WIRELESS_HARDWARE_ENABLED ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_WWAN_ENABLED ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_WWAN_HARDWARE_ENABLED ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_WIMAX_ENABLED ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_WIMAX_HARDWARE_ENABLED ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_ACTIVE_CONNECTIONS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_CONNECTIVITY ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_PRIMARY_CONNECTION ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_ACTIVATING_CONNECTION ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_CLIENT_DEVICES ##### --> -<para> - -</para> - - - -<!-- ##### ENUM NMClientPermission ##### --> -<para> - -</para> - -@NM_CLIENT_PERMISSION_NONE: -@NM_CLIENT_PERMISSION_ENABLE_DISABLE_NETWORK: -@NM_CLIENT_PERMISSION_ENABLE_DISABLE_WIFI: -@NM_CLIENT_PERMISSION_ENABLE_DISABLE_WWAN: -@NM_CLIENT_PERMISSION_ENABLE_DISABLE_WIMAX: -@NM_CLIENT_PERMISSION_SLEEP_WAKE: -@NM_CLIENT_PERMISSION_NETWORK_CONTROL: -@NM_CLIENT_PERMISSION_WIFI_SHARE_PROTECTED: -@NM_CLIENT_PERMISSION_WIFI_SHARE_OPEN: -@NM_CLIENT_PERMISSION_SETTINGS_MODIFY_SYSTEM: -@NM_CLIENT_PERMISSION_SETTINGS_MODIFY_OWN: -@NM_CLIENT_PERMISSION_SETTINGS_MODIFY_HOSTNAME: -@NM_CLIENT_PERMISSION_LAST: - -<!-- ##### ENUM NMClientPermissionResult ##### --> -<para> - -</para> - -@NM_CLIENT_PERMISSION_RESULT_UNKNOWN: -@NM_CLIENT_PERMISSION_RESULT_YES: -@NM_CLIENT_PERMISSION_RESULT_AUTH: -@NM_CLIENT_PERMISSION_RESULT_NO: - -<!-- ##### ENUM NMClientError ##### --> -<para> - -</para> - -@NM_CLIENT_ERROR_UNKNOWN: -@NM_CLIENT_ERROR_MANAGER_NOT_RUNNING: - -<!-- ##### MACRO NM_CLIENT_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_client_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### FUNCTION nm_client_new ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### FUNCTION nm_client_new_async ##### --> -<para> - -</para> - -@cancellable: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_client_new_finish ##### --> -<para> - -</para> - -@result: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_client_get_devices ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_get_device_by_path ##### --> -<para> - -</para> - -@client: -@object_path: -@Returns: - - -<!-- ##### FUNCTION nm_client_get_device_by_iface ##### --> -<para> - -</para> - -@client: -@iface: -@Returns: - - -<!-- ##### USER_FUNCTION NMClientActivateFn ##### --> -<para> - -</para> - -@client: -@active_connection: -@error: -@user_data: - - -<!-- ##### FUNCTION nm_client_activate_connection ##### --> -<para> - -</para> - -@client: -@connection: -@device: -@specific_object: -@callback: -@user_data: - - -<!-- ##### USER_FUNCTION NMClientAddActivateFn ##### --> -<para> - -</para> - -@client: -@connection: -@new_connection_path: -@error: -@user_data: - - -<!-- ##### FUNCTION nm_client_add_and_activate_connection ##### --> -<para> - -</para> - -@client: -@partial: -@device: -@specific_object: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_client_deactivate_connection ##### --> -<para> - -</para> - -@client: -@active: - - -<!-- ##### FUNCTION nm_client_networking_get_enabled ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_networking_set_enabled ##### --> -<para> - -</para> - -@client: -@enabled: - - -<!-- ##### FUNCTION nm_client_wireless_get_enabled ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_wireless_set_enabled ##### --> -<para> - -</para> - -@client: -@enabled: - - -<!-- ##### FUNCTION nm_client_wireless_hardware_get_enabled ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_wwan_get_enabled ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_wwan_set_enabled ##### --> -<para> - -</para> - -@client: -@enabled: - - -<!-- ##### FUNCTION nm_client_wwan_hardware_get_enabled ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_wimax_get_enabled ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_wimax_set_enabled ##### --> -<para> - -</para> - -@client: -@enabled: - - -<!-- ##### FUNCTION nm_client_wimax_hardware_get_enabled ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_get_version ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_get_state ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_get_startup ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_get_manager_running ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_get_active_connections ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_sleep ##### --> -<para> - -</para> - -@client: -@sleep_: - - -<!-- ##### FUNCTION nm_client_get_permission_result ##### --> -<para> - -</para> - -@client: -@permission: -@Returns: - - -<!-- ##### FUNCTION nm_client_get_logging ##### --> -<para> - -</para> - -@client: -@level: -@domains: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_client_set_logging ##### --> -<para> - -</para> - -@client: -@level: -@domains: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_client_get_connectivity ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_check_connectivity ##### --> -<para> - -</para> - -@client: -@cancellable: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_client_check_connectivity_async ##### --> -<para> - -</para> - -@client: -@cancellable: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_client_check_connectivity_finish ##### --> -<para> - -</para> - -@client: -@result: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_client_get_primary_connection ##### --> -<para> - -</para> - -@client: -@Returns: - - -<!-- ##### FUNCTION nm_client_get_activating_connection ##### --> -<para> - -</para> - -@client: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device-adsl.sgml b/docs/libnm-glib/tmpl/nm-device-adsl.sgml deleted file mode 100644 index 1c7e14c2..00000000 --- a/docs/libnm-glib/tmpl/nm-device-adsl.sgml +++ /dev/null @@ -1,75 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceAdsl - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceAdslError ##### --> -<para> - -</para> - -@NM_DEVICE_ADSL_ERROR_UNKNOWN: -@NM_DEVICE_ADSL_ERROR_NOT_ADSL_CONNECTION: -@NM_DEVICE_ADSL_ERROR_INVALID_ADSL_CONNECTION: - -<!-- ##### MACRO NM_DEVICE_ADSL_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_adsl_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_ADSL_CARRIER ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_adsl_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_adsl_get_carrier ##### --> -<para> - -</para> - -@device: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device-bond.sgml b/docs/libnm-glib/tmpl/nm-device-bond.sgml deleted file mode 100644 index 3270d995..00000000 --- a/docs/libnm-glib/tmpl/nm-device-bond.sgml +++ /dev/null @@ -1,108 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceBond - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceBondError ##### --> -<para> - -</para> - -@NM_DEVICE_BOND_ERROR_UNKNOWN: -@NM_DEVICE_BOND_ERROR_NOT_BOND_CONNECTION: -@NM_DEVICE_BOND_ERROR_INVALID_BOND_CONNECTION: -@NM_DEVICE_BOND_ERROR_INTERFACE_MISMATCH: - -<!-- ##### MACRO NM_DEVICE_BOND_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_bond_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_BOND_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_BOND_CARRIER ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_BOND_SLAVES ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_bond_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_bond_get_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_bond_get_carrier ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_bond_get_slaves ##### --> -<para> - -</para> - -@device: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device-bridge.sgml b/docs/libnm-glib/tmpl/nm-device-bridge.sgml deleted file mode 100644 index 65094577..00000000 --- a/docs/libnm-glib/tmpl/nm-device-bridge.sgml +++ /dev/null @@ -1,108 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceBridge - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceBridgeError ##### --> -<para> - -</para> - -@NM_DEVICE_BRIDGE_ERROR_UNKNOWN: -@NM_DEVICE_BRIDGE_ERROR_NOT_BRIDGE_CONNECTION: -@NM_DEVICE_BRIDGE_ERROR_INVALID_BRIDGE_CONNECTION: -@NM_DEVICE_BRIDGE_ERROR_INTERFACE_MISMATCH: - -<!-- ##### MACRO NM_DEVICE_BRIDGE_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_bridge_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_BRIDGE_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_BRIDGE_CARRIER ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_BRIDGE_SLAVES ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_bridge_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_bridge_get_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_bridge_get_carrier ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_bridge_get_slaves ##### --> -<para> - -</para> - -@device: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device-bt.sgml b/docs/libnm-glib/tmpl/nm-device-bt.sgml deleted file mode 100644 index 44a6f692..00000000 --- a/docs/libnm-glib/tmpl/nm-device-bt.sgml +++ /dev/null @@ -1,110 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceBt - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceBtError ##### --> -<para> - -</para> - -@NM_DEVICE_BT_ERROR_UNKNOWN: -@NM_DEVICE_BT_ERROR_NOT_BT_CONNECTION: -@NM_DEVICE_BT_ERROR_INVALID_BT_CONNECTION: -@NM_DEVICE_BT_ERROR_INVALID_DEVICE_MAC: -@NM_DEVICE_BT_ERROR_MAC_MISMATCH: -@NM_DEVICE_BT_ERROR_MISSING_DEVICE_CAPS: - -<!-- ##### MACRO NM_DEVICE_BT_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_bt_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_BT_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_BT_NAME ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_BT_CAPABILITIES ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_bt_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_bt_get_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_bt_get_name ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_bt_get_capabilities ##### --> -<para> - -</para> - -@device: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device-ethernet.sgml b/docs/libnm-glib/tmpl/nm-device-ethernet.sgml deleted file mode 100644 index 4d97c189..00000000 --- a/docs/libnm-glib/tmpl/nm-device-ethernet.sgml +++ /dev/null @@ -1,125 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceEthernet - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceEthernetError ##### --> -<para> - -</para> - -@NM_DEVICE_ETHERNET_ERROR_UNKNOWN: -@NM_DEVICE_ETHERNET_ERROR_NOT_ETHERNET_CONNECTION: -@NM_DEVICE_ETHERNET_ERROR_INVALID_ETHERNET_CONNECTION: -@NM_DEVICE_ETHERNET_ERROR_INVALID_DEVICE_MAC: -@NM_DEVICE_ETHERNET_ERROR_MAC_MISMATCH: - -<!-- ##### MACRO NM_DEVICE_ETHERNET_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_ethernet_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_ETHERNET_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_ETHERNET_PERMANENT_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_ETHERNET_SPEED ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_ETHERNET_CARRIER ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_ethernet_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_ethernet_get_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_ethernet_get_permanent_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_ethernet_get_speed ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_ethernet_get_carrier ##### --> -<para> - -</para> - -@device: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device-generic.sgml b/docs/libnm-glib/tmpl/nm-device-generic.sgml deleted file mode 100644 index c20500bf..00000000 --- a/docs/libnm-glib/tmpl/nm-device-generic.sgml +++ /dev/null @@ -1,82 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceGeneric - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceGenericError ##### --> -<para> - -</para> - -@NM_DEVICE_GENERIC_ERROR_UNKNOWN: -@NM_DEVICE_GENERIC_ERROR_NOT_GENERIC_CONNECTION: -@NM_DEVICE_GENERIC_ERROR_MISSING_INTERFACE_NAME: - -<!-- ##### MACRO NM_DEVICE_GENERIC_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_generic_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_GENERIC_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_GENERIC_TYPE_DESCRIPTION ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_generic_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_generic_get_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device-infiniband.sgml b/docs/libnm-glib/tmpl/nm-device-infiniband.sgml deleted file mode 100644 index 73a3f3c4..00000000 --- a/docs/libnm-glib/tmpl/nm-device-infiniband.sgml +++ /dev/null @@ -1,93 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceInfiniband - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceInfinibandError ##### --> -<para> - -</para> - -@NM_DEVICE_INFINIBAND_ERROR_UNKNOWN: -@NM_DEVICE_INFINIBAND_ERROR_NOT_INFINIBAND_CONNECTION: -@NM_DEVICE_INFINIBAND_ERROR_INVALID_INFINIBAND_CONNECTION: -@NM_DEVICE_INFINIBAND_ERROR_INVALID_DEVICE_MAC: -@NM_DEVICE_INFINIBAND_ERROR_MAC_MISMATCH: - -<!-- ##### MACRO NM_DEVICE_INFINIBAND_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_infiniband_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_INFINIBAND_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_INFINIBAND_CARRIER ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_infiniband_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_infiniband_get_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_infiniband_get_carrier ##### --> -<para> - -</para> - -@device: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device-modem.sgml b/docs/libnm-glib/tmpl/nm-device-modem.sgml deleted file mode 100644 index 007c3b42..00000000 --- a/docs/libnm-glib/tmpl/nm-device-modem.sgml +++ /dev/null @@ -1,82 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceModem - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceModemError ##### --> -<para> - -</para> - -@NM_DEVICE_MODEM_ERROR_UNKNOWN: -@NM_DEVICE_MODEM_ERROR_NOT_MODEM_CONNECTION: -@NM_DEVICE_MODEM_ERROR_INVALID_MODEM_CONNECTION: -@NM_DEVICE_MODEM_ERROR_MISSING_DEVICE_CAPS: - -<!-- ##### MACRO NM_DEVICE_MODEM_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_modem_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_MODEM_MODEM_CAPABILITIES ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_MODEM_CURRENT_CAPABILITIES ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_modem_get_modem_capabilities ##### --> -<para> - -</para> - -@self: -@Returns: - - -<!-- ##### FUNCTION nm_device_modem_get_current_capabilities ##### --> -<para> - -</para> - -@self: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device-olpc-mesh.sgml b/docs/libnm-glib/tmpl/nm-device-olpc-mesh.sgml deleted file mode 100644 index c8cccb2f..00000000 --- a/docs/libnm-glib/tmpl/nm-device-olpc-mesh.sgml +++ /dev/null @@ -1,107 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceOlpcMesh - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceOlpcMeshError ##### --> -<para> - -</para> - -@NM_DEVICE_OLPC_MESH_ERROR_UNKNOWN: -@NM_DEVICE_OLPC_MESH_ERROR_NOT_OLPC_MESH_CONNECTION: -@NM_DEVICE_OLPC_MESH_ERROR_INVALID_OLPC_MESH_CONNECTION: - -<!-- ##### MACRO NM_DEVICE_OLPC_MESH_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_olpc_mesh_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_OLPC_MESH_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_OLPC_MESH_COMPANION ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_OLPC_MESH_ACTIVE_CHANNEL ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_olpc_mesh_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_olpc_mesh_get_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_olpc_mesh_get_companion ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_olpc_mesh_get_active_channel ##### --> -<para> - -</para> - -@device: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device-team.sgml b/docs/libnm-glib/tmpl/nm-device-team.sgml deleted file mode 100644 index abf5ab69..00000000 --- a/docs/libnm-glib/tmpl/nm-device-team.sgml +++ /dev/null @@ -1,108 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceTeam - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceTeamError ##### --> -<para> - -</para> - -@NM_DEVICE_TEAM_ERROR_UNKNOWN: -@NM_DEVICE_TEAM_ERROR_NOT_TEAM_CONNECTION: -@NM_DEVICE_TEAM_ERROR_INVALID_TEAM_CONNECTION: -@NM_DEVICE_TEAM_ERROR_INTERFACE_MISMATCH: - -<!-- ##### MACRO NM_DEVICE_TEAM_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_team_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_TEAM_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_TEAM_CARRIER ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_TEAM_SLAVES ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_team_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_team_get_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_team_get_carrier ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_team_get_slaves ##### --> -<para> - -</para> - -@device: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device-vlan.sgml b/docs/libnm-glib/tmpl/nm-device-vlan.sgml deleted file mode 100644 index 5397d204..00000000 --- a/docs/libnm-glib/tmpl/nm-device-vlan.sgml +++ /dev/null @@ -1,126 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceVlan - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceVlanError ##### --> -<para> - -</para> - -@NM_DEVICE_VLAN_ERROR_UNKNOWN: -@NM_DEVICE_VLAN_ERROR_NOT_VLAN_CONNECTION: -@NM_DEVICE_VLAN_ERROR_INVALID_VLAN_CONNECTION: -@NM_DEVICE_VLAN_ERROR_ID_MISMATCH: -@NM_DEVICE_VLAN_ERROR_INTERFACE_MISMATCH: -@NM_DEVICE_VLAN_ERROR_MAC_MISMATCH: - -<!-- ##### MACRO NM_DEVICE_VLAN_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_vlan_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_VLAN_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_VLAN_CARRIER ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_VLAN_PARENT ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_VLAN_VLAN_ID ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_vlan_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_vlan_get_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_vlan_get_carrier ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_vlan_get_parent ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_vlan_get_vlan_id ##### --> -<para> - -</para> - -@device: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device-wifi.sgml b/docs/libnm-glib/tmpl/nm-device-wifi.sgml deleted file mode 100644 index b694b822..00000000 --- a/docs/libnm-glib/tmpl/nm-device-wifi.sgml +++ /dev/null @@ -1,205 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceWifi - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceWifiError ##### --> -<para> - -</para> - -@NM_DEVICE_WIFI_ERROR_UNKNOWN: -@NM_DEVICE_WIFI_ERROR_NOT_WIFI_CONNECTION: -@NM_DEVICE_WIFI_ERROR_INVALID_WIFI_CONNECTION: -@NM_DEVICE_WIFI_ERROR_INVALID_DEVICE_MAC: -@NM_DEVICE_WIFI_ERROR_MAC_MISMATCH: -@NM_DEVICE_WIFI_ERROR_MISSING_DEVICE_WPA_CAPS: -@NM_DEVICE_WIFI_ERROR_MISSING_DEVICE_RSN_CAPS: - -<!-- ##### MACRO NM_DEVICE_WIFI_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_wifi_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_WIFI_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIFI_PERMANENT_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIFI_MODE ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIFI_BITRATE ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIFI_CAPABILITIES ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIFI_ACCESS_POINTS ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_wifi_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_wifi_get_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_wifi_get_permanent_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_wifi_get_mode ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_wifi_get_bitrate ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_wifi_get_capabilities ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_wifi_get_active_access_point ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_wifi_get_access_point_by_path ##### --> -<para> - -</para> - -@device: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_wifi_get_access_points ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### USER_FUNCTION NMDeviceWifiRequestScanFn ##### --> -<para> - -</para> - -@device: -@error: -@user_data: - - -<!-- ##### FUNCTION nm_device_wifi_request_scan_simple ##### --> -<para> - -</para> - -@device: -@callback: -@user_data: - - diff --git a/docs/libnm-glib/tmpl/nm-device-wimax.sgml b/docs/libnm-glib/tmpl/nm-device-wimax.sgml deleted file mode 100644 index acf1ab91..00000000 --- a/docs/libnm-glib/tmpl/nm-device-wimax.sgml +++ /dev/null @@ -1,199 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDeviceWimax - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceWimaxError ##### --> -<para> - -</para> - -@NM_DEVICE_WIMAX_ERROR_UNKNOWN: -@NM_DEVICE_WIMAX_ERROR_NOT_WIMAX_CONNECTION: -@NM_DEVICE_WIMAX_ERROR_INVALID_WIMAX_CONNECTION: -@NM_DEVICE_WIMAX_ERROR_INVALID_DEVICE_MAC: -@NM_DEVICE_WIMAX_ERROR_MAC_MISMATCH: - -<!-- ##### MACRO NM_DEVICE_WIMAX_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_wimax_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_WIMAX_HW_ADDRESS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIMAX_ACTIVE_NSP ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIMAX_CENTER_FREQUENCY ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIMAX_RSSI ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIMAX_CINR ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIMAX_TX_POWER ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIMAX_BSID ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_WIMAX_NSPS ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_wimax_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_wimax_get_hw_address ##### --> -<para> - -</para> - -@wimax: -@Returns: - - -<!-- ##### FUNCTION nm_device_wimax_get_active_nsp ##### --> -<para> - -</para> - -@wimax: -@Returns: - - -<!-- ##### FUNCTION nm_device_wimax_get_nsp_by_path ##### --> -<para> - -</para> - -@wimax: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_wimax_get_nsps ##### --> -<para> - -</para> - -@wimax: -@Returns: - - -<!-- ##### FUNCTION nm_device_wimax_get_center_frequency ##### --> -<para> - -</para> - -@self: -@Returns: - - -<!-- ##### FUNCTION nm_device_wimax_get_rssi ##### --> -<para> - -</para> - -@self: -@Returns: - - -<!-- ##### FUNCTION nm_device_wimax_get_cinr ##### --> -<para> - -</para> - -@self: -@Returns: - - -<!-- ##### FUNCTION nm_device_wimax_get_tx_power ##### --> -<para> - -</para> - -@self: -@Returns: - - -<!-- ##### FUNCTION nm_device_wimax_get_bsid ##### --> -<para> - -</para> - -@self: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-device.sgml b/docs/libnm-glib/tmpl/nm-device.sgml deleted file mode 100644 index ef5443e1..00000000 --- a/docs/libnm-glib/tmpl/nm-device.sgml +++ /dev/null @@ -1,562 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDevice - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMDeviceError ##### --> -<para> - -</para> - -@NM_DEVICE_ERROR_UNKNOWN: -@NM_DEVICE_ERROR_INTERFACE_MISMATCH: - -<!-- ##### MACRO NM_DEVICE_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_DEVICE_DEVICE_TYPE ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_UDI ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_INTERFACE ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_IP_INTERFACE ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_DRIVER ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_DRIVER_VERSION ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_FIRMWARE_VERSION ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_CAPABILITIES ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_MANAGED ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_AUTOCONNECT ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_FIRMWARE_MISSING ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_IP4_CONFIG ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_DHCP4_CONFIG ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_IP6_CONFIG ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_DHCP6_CONFIG ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_STATE ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_STATE_REASON ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_ACTIVE_CONNECTION ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_AVAILABLE_CONNECTIONS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_VENDOR ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_PRODUCT ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_PHYSICAL_PORT_ID ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_DEVICE_MTU ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_device_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_iface ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_ip_iface ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_device_type ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_udi ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_driver ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_driver_version ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_firmware_version ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_type_description ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_hw_address ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_capabilities ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_managed ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_autoconnect ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_set_autoconnect ##### --> -<para> - -</para> - -@device: -@autoconnect: - - -<!-- ##### FUNCTION nm_device_get_firmware_missing ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_ip4_config ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_dhcp4_config ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_ip6_config ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_dhcp6_config ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_state ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_state_reason ##### --> -<para> - -</para> - -@device: -@reason: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_active_connection ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_available_connections ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_physical_port_id ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_mtu ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_is_software ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_product ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_vendor ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_description ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### FUNCTION nm_device_disambiguate_names ##### --> -<para> - -</para> - -@devices: -@num_devices: -@Returns: - - -<!-- ##### USER_FUNCTION NMDeviceCallbackFn ##### --> -<para> - -</para> - -@device: -@error: -@user_data: - - -<!-- ##### FUNCTION nm_device_disconnect ##### --> -<para> - -</para> - -@device: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_device_delete ##### --> -<para> - -</para> - -@device: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_device_filter_connections ##### --> -<para> - -</para> - -@device: -@connections: -@Returns: - - -<!-- ##### FUNCTION nm_device_connection_valid ##### --> -<para> - -</para> - -@device: -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_device_connection_compatible ##### --> -<para> - -</para> - -@device: -@connection: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_device_get_setting_type ##### --> -<para> - -</para> - -@device: -@Returns: - - -<!-- ##### USER_FUNCTION NMDeviceDeactivateFn ##### --> -<para> - -</para> - -@device: -@error: -@user_data: - - diff --git a/docs/libnm-glib/tmpl/nm-dhcp4-config.sgml b/docs/libnm-glib/tmpl/nm-dhcp4-config.sgml deleted file mode 100644 index 4f3d8602..00000000 --- a/docs/libnm-glib/tmpl/nm-dhcp4-config.sgml +++ /dev/null @@ -1,60 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDHCP4Config - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### MACRO NM_DHCP4_CONFIG_OPTIONS ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_dhcp4_config_new ##### --> -<para> - -</para> - -@connection: -@object_path: -@Returns: - - -<!-- ##### FUNCTION nm_dhcp4_config_get_options ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_dhcp4_config_get_one_option ##### --> -<para> - -</para> - -@config: -@option: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-dhcp6-config.sgml b/docs/libnm-glib/tmpl/nm-dhcp6-config.sgml deleted file mode 100644 index 7679b7d9..00000000 --- a/docs/libnm-glib/tmpl/nm-dhcp6-config.sgml +++ /dev/null @@ -1,60 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMDHCP6Config - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### MACRO NM_DHCP6_CONFIG_OPTIONS ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_dhcp6_config_new ##### --> -<para> - -</para> - -@connection: -@object_path: -@Returns: - - -<!-- ##### FUNCTION nm_dhcp6_config_get_options ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_dhcp6_config_get_one_option ##### --> -<para> - -</para> - -@config: -@option: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-glib-enum-types.sgml b/docs/libnm-glib/tmpl/nm-glib-enum-types.sgml deleted file mode 100644 index b81a00af..00000000 --- a/docs/libnm-glib/tmpl/nm-glib-enum-types.sgml +++ /dev/null @@ -1,24 +0,0 @@ -<!-- ##### SECTION Title ##### --> -nm-glib-enum-types - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - diff --git a/docs/libnm-glib/tmpl/nm-ip4-config.sgml b/docs/libnm-glib/tmpl/nm-ip4-config.sgml deleted file mode 100644 index 6b5f91f3..00000000 --- a/docs/libnm-glib/tmpl/nm-ip4-config.sgml +++ /dev/null @@ -1,146 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMIP4Config - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### MACRO NM_IP4_CONFIG_GATEWAY ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_IP4_CONFIG_ADDRESSES ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_IP4_CONFIG_ROUTES ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_IP4_CONFIG_NAMESERVERS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_IP4_CONFIG_DOMAINS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_IP4_CONFIG_SEARCHES ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_IP4_CONFIG_WINS_SERVERS ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_ip4_config_new ##### --> -<para> - -</para> - -@connection: -@object_path: -@Returns: - - -<!-- ##### FUNCTION nm_ip4_config_get_gateway ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_ip4_config_get_addresses ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_ip4_config_get_routes ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_ip4_config_get_nameservers ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_ip4_config_get_domains ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_ip4_config_get_searches ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_ip4_config_get_wins_servers ##### --> -<para> - -</para> - -@config: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-ip6-config.sgml b/docs/libnm-glib/tmpl/nm-ip6-config.sgml deleted file mode 100644 index f0a95e52..00000000 --- a/docs/libnm-glib/tmpl/nm-ip6-config.sgml +++ /dev/null @@ -1,149 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMIP6Config - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### MACRO NM_IP6_CONFIG_GATEWAY ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_IP6_CONFIG_ADDRESSES ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_IP6_CONFIG_ROUTES ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_IP6_CONFIG_NAMESERVERS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_IP6_CONFIG_DOMAINS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_IP6_CONFIG_SEARCHES ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_ip6_config_new ##### --> -<para> - -</para> - -@connection: -@object_path: -@Returns: - - -<!-- ##### FUNCTION nm_ip6_config_get_gateway ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_ip6_config_get_addresses ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_ip6_config_get_routes ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_ip6_config_get_num_nameservers ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_ip6_config_get_nameserver ##### --> -<para> - -</para> - -@config: -@idx: -@Returns: - - -<!-- ##### FUNCTION nm_ip6_config_get_nameservers ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_ip6_config_get_domains ##### --> -<para> - -</para> - -@config: -@Returns: - - -<!-- ##### FUNCTION nm_ip6_config_get_searches ##### --> -<para> - -</para> - -@config: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-object.sgml b/docs/libnm-glib/tmpl/nm-object.sgml deleted file mode 100644 index 7d99e2c0..00000000 --- a/docs/libnm-glib/tmpl/nm-object.sgml +++ /dev/null @@ -1,80 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMObject - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMObjectError ##### --> -<para> - -</para> - -@NM_OBJECT_ERROR_UNKNOWN: -@NM_OBJECT_ERROR_OBJECT_CREATION_FAILURE: - -<!-- ##### MACRO NM_OBJECT_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_object_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_OBJECT_DBUS_CONNECTION ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_OBJECT_DBUS_PATH ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_object_get_connection ##### --> -<para> - -</para> - -@object: -@Returns: - - -<!-- ##### FUNCTION nm_object_get_path ##### --> -<para> - -</para> - -@object: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-remote-connection.sgml b/docs/libnm-glib/tmpl/nm-remote-connection.sgml deleted file mode 100644 index f20ef680..00000000 --- a/docs/libnm-glib/tmpl/nm-remote-connection.sgml +++ /dev/null @@ -1,172 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMRemoteConnection - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMRemoteConnectionError ##### --> -<para> - -</para> - -@NM_REMOTE_CONNECTION_ERROR_UNKNOWN: -@NM_REMOTE_CONNECTION_ERROR_DISCONNECTED: - -<!-- ##### MACRO NM_REMOTE_CONNECTION_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_remote_connection_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_REMOTE_CONNECTION_UNSAVED ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_REMOTE_CONNECTION_UPDATED ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_REMOTE_CONNECTION_REMOVED ##### --> -<para> - -</para> - - - -<!-- ##### USER_FUNCTION NMRemoteConnectionResultFunc ##### --> -<para> - -</para> - -@connection: -@error: -@user_data: - - -<!-- ##### TYPEDEF NMRemoteConnectionCommitFunc ##### --> -<para> - -</para> - - -<!-- ##### TYPEDEF NMRemoteConnectionDeleteFunc ##### --> -<para> - -</para> - - -<!-- ##### USER_FUNCTION NMRemoteConnectionGetSecretsFunc ##### --> -<para> - -</para> - -@connection: -@secrets: -@error: -@user_data: - - -<!-- ##### FUNCTION nm_remote_connection_new ##### --> -<para> - -</para> - -@bus: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_remote_connection_commit_changes ##### --> -<para> - -</para> - -@connection: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_remote_connection_commit_changes_unsaved ##### --> -<para> - -</para> - -@connection: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_remote_connection_save ##### --> -<para> - -</para> - -@connection: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_remote_connection_delete ##### --> -<para> - -</para> - -@connection: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_remote_connection_get_secrets ##### --> -<para> - -</para> - -@connection: -@setting_name: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_remote_connection_get_unsaved ##### --> -<para> - -</para> - -@connection: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-remote-settings.sgml b/docs/libnm-glib/tmpl/nm-remote-settings.sgml deleted file mode 100644 index 4500e38f..00000000 --- a/docs/libnm-glib/tmpl/nm-remote-settings.sgml +++ /dev/null @@ -1,251 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMRemoteSettings - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### ENUM NMRemoteSettingsError ##### --> -<para> - -</para> - -@NM_REMOTE_SETTINGS_ERROR_UNKNOWN: -@NM_REMOTE_SETTINGS_ERROR_CONNECTION_REMOVED: -@NM_REMOTE_SETTINGS_ERROR_CONNECTION_UNAVAILABLE: -@NM_REMOTE_SETTINGS_ERROR_SERVICE_UNAVAILABLE: - -<!-- ##### MACRO NM_REMOTE_SETTINGS_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_remote_settings_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### MACRO NM_REMOTE_SETTINGS_BUS ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_REMOTE_SETTINGS_SERVICE_RUNNING ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_REMOTE_SETTINGS_HOSTNAME ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_REMOTE_SETTINGS_CAN_MODIFY ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_REMOTE_SETTINGS_NEW_CONNECTION ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_REMOTE_SETTINGS_CONNECTIONS_READ ##### --> -<para> - -</para> - - - -<!-- ##### USER_FUNCTION NMRemoteSettingsAddConnectionFunc ##### --> -<para> - -</para> - -@settings: -@connection: -@error: -@user_data: - - -<!-- ##### USER_FUNCTION NMRemoteSettingsLoadConnectionsFunc ##### --> -<para> - -</para> - -@settings: -@failures: -@error: -@user_data: - - -<!-- ##### USER_FUNCTION NMRemoteSettingsSaveHostnameFunc ##### --> -<para> - -</para> - -@settings: -@error: -@user_data: - - -<!-- ##### FUNCTION nm_remote_settings_new ##### --> -<para> - -</para> - -@bus: -@Returns: - - -<!-- ##### FUNCTION nm_remote_settings_new_async ##### --> -<para> - -</para> - -@bus: -@cancellable: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_remote_settings_new_finish ##### --> -<para> - -</para> - -@result: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_remote_settings_list_connections ##### --> -<para> - -</para> - -@settings: -@Returns: - - -<!-- ##### FUNCTION nm_remote_settings_get_connection_by_id ##### --> -<para> - -</para> - -@settings: -@id: -@Returns: - - -<!-- ##### FUNCTION nm_remote_settings_get_connection_by_path ##### --> -<para> - -</para> - -@settings: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_remote_settings_get_connection_by_uuid ##### --> -<para> - -</para> - -@settings: -@uuid: -@Returns: - - -<!-- ##### FUNCTION nm_remote_settings_add_connection ##### --> -<para> - -</para> - -@settings: -@connection: -@callback: -@user_data: -@Returns: - - -<!-- ##### FUNCTION nm_remote_settings_add_connection_unsaved ##### --> -<para> - -</para> - -@settings: -@connection: -@callback: -@user_data: -@Returns: - - -<!-- ##### FUNCTION nm_remote_settings_load_connections ##### --> -<para> - -</para> - -@settings: -@filenames: -@failures: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_remote_settings_reload_connections ##### --> -<para> - -</para> - -@settings: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_remote_settings_save_hostname ##### --> -<para> - -</para> - -@settings: -@hostname: -@callback: -@user_data: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-secret-agent.sgml b/docs/libnm-glib/tmpl/nm-secret-agent.sgml deleted file mode 100644 index 72f5a573..00000000 --- a/docs/libnm-glib/tmpl/nm-secret-agent.sgml +++ /dev/null @@ -1,203 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMSecretAgent - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### MACRO NM_SECRET_AGENT_ERROR ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_secret_agent_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### ENUM NMSecretAgentError ##### --> -<para> - -</para> - -@NM_SECRET_AGENT_ERROR_NOT_AUTHORIZED: -@NM_SECRET_AGENT_ERROR_INVALID_CONNECTION: -@NM_SECRET_AGENT_ERROR_USER_CANCELED: -@NM_SECRET_AGENT_ERROR_AGENT_CANCELED: -@NM_SECRET_AGENT_ERROR_INTERNAL_ERROR: -@NM_SECRET_AGENT_ERROR_NO_SECRETS: - -<!-- ##### ENUM NMSecretAgentCapabilities ##### --> -<para> - -</para> - -@NM_SECRET_AGENT_CAPABILITY_NONE: -@NM_SECRET_AGENT_CAPABILITY_VPN_HINTS: -@NM_SECRET_AGENT_CAPABILITY_LAST: - -<!-- ##### ENUM NMSecretAgentGetSecretsFlags ##### --> -<para> - -</para> - -@NM_SECRET_AGENT_GET_SECRETS_FLAG_NONE: -@NM_SECRET_AGENT_GET_SECRETS_FLAG_ALLOW_INTERACTION: -@NM_SECRET_AGENT_GET_SECRETS_FLAG_REQUEST_NEW: -@NM_SECRET_AGENT_GET_SECRETS_FLAG_USER_REQUESTED: - -<!-- ##### MACRO NM_SECRET_AGENT_IDENTIFIER ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_SECRET_AGENT_AUTO_REGISTER ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_SECRET_AGENT_REGISTERED ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_SECRET_AGENT_CAPABILITIES ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_SECRET_AGENT_REGISTRATION_RESULT ##### --> -<para> - -</para> - - - -<!-- ##### USER_FUNCTION NMSecretAgentGetSecretsFunc ##### --> -<para> - -</para> - -@agent: -@connection: -@secrets: -@error: -@user_data: - - -<!-- ##### USER_FUNCTION NMSecretAgentSaveSecretsFunc ##### --> -<para> - -</para> - -@agent: -@connection: -@error: -@user_data: - - -<!-- ##### USER_FUNCTION NMSecretAgentDeleteSecretsFunc ##### --> -<para> - -</para> - -@agent: -@connection: -@error: -@user_data: - - -<!-- ##### FUNCTION nm_secret_agent_register ##### --> -<para> - -</para> - -@self: -@Returns: - - -<!-- ##### FUNCTION nm_secret_agent_unregister ##### --> -<para> - -</para> - -@self: -@Returns: - - -<!-- ##### FUNCTION nm_secret_agent_get_registered ##### --> -<para> - -</para> - -@self: -@Returns: - - -<!-- ##### FUNCTION nm_secret_agent_get_secrets ##### --> -<para> - -</para> - -@self: -@connection: -@setting_name: -@hints: -@flags: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_secret_agent_save_secrets ##### --> -<para> - -</para> - -@self: -@connection: -@callback: -@user_data: - - -<!-- ##### FUNCTION nm_secret_agent_delete_secrets ##### --> -<para> - -</para> - -@self: -@connection: -@callback: -@user_data: - - diff --git a/docs/libnm-glib/tmpl/nm-types.sgml b/docs/libnm-glib/tmpl/nm-types.sgml deleted file mode 100644 index 18babb0f..00000000 --- a/docs/libnm-glib/tmpl/nm-types.sgml +++ /dev/null @@ -1,24 +0,0 @@ -<!-- ##### SECTION Title ##### --> -nm-types - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - diff --git a/docs/libnm-glib/tmpl/nm-vpn-connection.sgml b/docs/libnm-glib/tmpl/nm-vpn-connection.sgml deleted file mode 100644 index 39d5ecc1..00000000 --- a/docs/libnm-glib/tmpl/nm-vpn-connection.sgml +++ /dev/null @@ -1,66 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMVPNConnection - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### MACRO NM_VPN_CONNECTION_VPN_STATE ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_VPN_CONNECTION_BANNER ##### --> -<para> - -</para> - - - -<!-- ##### FUNCTION nm_vpn_connection_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_connection_get_vpn_state ##### --> -<para> - -</para> - -@vpn: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_connection_get_banner ##### --> -<para> - -</para> - -@vpn: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-vpn-enum-types.sgml b/docs/libnm-glib/tmpl/nm-vpn-enum-types.sgml deleted file mode 100644 index 0f800cac..00000000 --- a/docs/libnm-glib/tmpl/nm-vpn-enum-types.sgml +++ /dev/null @@ -1,24 +0,0 @@ -<!-- ##### SECTION Title ##### --> -nm-vpn-enum-types - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - diff --git a/docs/libnm-glib/tmpl/nm-vpn-plugin-ui-interface.sgml b/docs/libnm-glib/tmpl/nm-vpn-plugin-ui-interface.sgml deleted file mode 100644 index 1f6635b8..00000000 --- a/docs/libnm-glib/tmpl/nm-vpn-plugin-ui-interface.sgml +++ /dev/null @@ -1,178 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMVpnPluginUiWidget - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### USER_FUNCTION NMVpnPluginUiFactory ##### --> -<para> - -</para> - -@error: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_ui_factory ##### --> -<para> - -</para> - -@error: -@Returns: - - -<!-- ##### ENUM NMVpnPluginUiCapability ##### --> -<para> - -</para> - -@NM_VPN_PLUGIN_UI_CAPABILITY_NONE: -@NM_VPN_PLUGIN_UI_CAPABILITY_IMPORT: -@NM_VPN_PLUGIN_UI_CAPABILITY_EXPORT: -@NM_VPN_PLUGIN_UI_CAPABILITY_IPV6: - -<!-- ##### MACRO NM_VPN_PLUGIN_UI_INTERFACE_NAME ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_VPN_PLUGIN_UI_INTERFACE_DESC ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_VPN_PLUGIN_UI_INTERFACE_SERVICE ##### --> -<para> - -</para> - - - -<!-- ##### ENUM NMVpnPluginUiInterfaceProp ##### --> -<para> - -</para> - -@NM_VPN_PLUGIN_UI_INTERFACE_PROP_FIRST: -@NM_VPN_PLUGIN_UI_INTERFACE_PROP_NAME: -@NM_VPN_PLUGIN_UI_INTERFACE_PROP_DESC: -@NM_VPN_PLUGIN_UI_INTERFACE_PROP_SERVICE: - -<!-- ##### FUNCTION nm_vpn_plugin_ui_interface_ui_factory ##### --> -<para> - -</para> - -@iface: -@connection: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_ui_interface_get_capabilities ##### --> -<para> - -</para> - -@iface: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_ui_interface_import ##### --> -<para> - -</para> - -@iface: -@path: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_ui_interface_export ##### --> -<para> - -</para> - -@iface: -@path: -@connection: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_ui_interface_get_suggested_name ##### --> -<para> - -</para> - -@iface: -@connection: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_ui_interface_delete_connection ##### --> -<para> - -</para> - -@iface: -@connection: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_ui_widget_interface_get_widget ##### --> -<para> - -</para> - -@iface: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_ui_widget_interface_update_connection ##### --> -<para> - -</para> - -@iface: -@connection: -@error: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_ui_widget_interface_save_secrets ##### --> -<para> - -</para> - -@iface: -@connection: -@error: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-vpn-plugin-utils.sgml b/docs/libnm-glib/tmpl/nm-vpn-plugin-utils.sgml deleted file mode 100644 index 3a6536da..00000000 --- a/docs/libnm-glib/tmpl/nm-vpn-plugin-utils.sgml +++ /dev/null @@ -1,46 +0,0 @@ -<!-- ##### SECTION Title ##### --> -nm-vpn-plugin-utils - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### FUNCTION nm_vpn_plugin_utils_read_vpn_details ##### --> -<para> - -</para> - -@fd: -@out_data: -@out_secrets: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_utils_get_secret_flags ##### --> -<para> - -</para> - -@data: -@secret_name: -@out_flags: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-vpn-plugin.sgml b/docs/libnm-glib/tmpl/nm-vpn-plugin.sgml deleted file mode 100644 index 4f002dfe..00000000 --- a/docs/libnm-glib/tmpl/nm-vpn-plugin.sgml +++ /dev/null @@ -1,155 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMVPNPlugin - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### MACRO NM_VPN_PLUGIN_DBUS_SERVICE_NAME ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_VPN_PLUGIN_STATE ##### --> -<para> - -</para> - - - -<!-- ##### ENUM NMVPNPluginError ##### --> -<para> - -</para> - -@NM_VPN_PLUGIN_ERROR_GENERAL: -@NM_VPN_PLUGIN_ERROR_STARTING_IN_PROGRESS: -@NM_VPN_PLUGIN_ERROR_ALREADY_STARTED: -@NM_VPN_PLUGIN_ERROR_STOPPING_IN_PROGRESS: -@NM_VPN_PLUGIN_ERROR_ALREADY_STOPPED: -@NM_VPN_PLUGIN_ERROR_WRONG_STATE: -@NM_VPN_PLUGIN_ERROR_BAD_ARGUMENTS: -@NM_VPN_PLUGIN_ERROR_LAUNCH_FAILED: -@NM_VPN_PLUGIN_ERROR_CONNECTION_INVALID: -@NM_VPN_PLUGIN_ERROR_INTERACTIVE_NOT_SUPPORTED: - -<!-- ##### FUNCTION nm_vpn_plugin_error_quark ##### --> -<para> - -</para> - -@void: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_get_connection ##### --> -<para> - -</para> - -@plugin: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_get_state ##### --> -<para> - -</para> - -@plugin: -@Returns: - - -<!-- ##### FUNCTION nm_vpn_plugin_set_state ##### --> -<para> - -</para> - -@plugin: -@state: - - -<!-- ##### FUNCTION nm_vpn_plugin_secrets_required ##### --> -<para> - -</para> - -@plugin: -@message: -@hints: - - -<!-- ##### FUNCTION nm_vpn_plugin_set_login_banner ##### --> -<para> - -</para> - -@plugin: -@banner: - - -<!-- ##### FUNCTION nm_vpn_plugin_failure ##### --> -<para> - -</para> - -@plugin: -@reason: - - -<!-- ##### FUNCTION nm_vpn_plugin_set_config ##### --> -<para> - -</para> - -@plugin: -@config: - - -<!-- ##### FUNCTION nm_vpn_plugin_set_ip4_config ##### --> -<para> - -</para> - -@plugin: -@ip4_config: - - -<!-- ##### FUNCTION nm_vpn_plugin_set_ip6_config ##### --> -<para> - -</para> - -@plugin: -@ip6_config: - - -<!-- ##### FUNCTION nm_vpn_plugin_disconnect ##### --> -<para> - -</para> - -@plugin: -@err: -@Returns: - - diff --git a/docs/libnm-glib/tmpl/nm-wimax-nsp.sgml b/docs/libnm-glib/tmpl/nm-wimax-nsp.sgml deleted file mode 100644 index 8add56d4..00000000 --- a/docs/libnm-glib/tmpl/nm-wimax-nsp.sgml +++ /dev/null @@ -1,112 +0,0 @@ -<!-- ##### SECTION Title ##### --> -NMWimaxNsp - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### MACRO NM_WIMAX_NSP_NAME ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_WIMAX_NSP_SIGNAL_QUALITY ##### --> -<para> - -</para> - - - -<!-- ##### MACRO NM_WIMAX_NSP_NETWORK_TYPE ##### --> -<para> - -</para> - - - -<!-- ##### ENUM NMWimaxNspNetworkType ##### --> -<para> - -</para> - -@NM_WIMAX_NSP_NETWORK_TYPE_UNKNOWN: -@NM_WIMAX_NSP_NETWORK_TYPE_HOME: -@NM_WIMAX_NSP_NETWORK_TYPE_PARTNER: -@NM_WIMAX_NSP_NETWORK_TYPE_ROAMING_PARTNER: - -<!-- ##### FUNCTION nm_wimax_nsp_new ##### --> -<para> - -</para> - -@connection: -@path: -@Returns: - - -<!-- ##### FUNCTION nm_wimax_nsp_get_name ##### --> -<para> - -</para> - -@nsp: -@Returns: - - -<!-- ##### FUNCTION nm_wimax_nsp_get_signal_quality ##### --> -<para> - -</para> - -@nsp: -@Returns: - - -<!-- ##### FUNCTION nm_wimax_nsp_get_network_type ##### --> -<para> - -</para> - -@nsp: -@Returns: - - -<!-- ##### FUNCTION nm_wimax_nsp_filter_connections ##### --> -<para> - -</para> - -@nsp: -@connections: -@Returns: - - -<!-- ##### FUNCTION nm_wimax_nsp_connection_valid ##### --> -<para> - -</para> - -@nsp: -@connection: -@Returns: - - diff --git a/docs/libnm-glib/version.xml b/docs/libnm-glib/version.xml index 6d7de6e6..ee90284c 100644 --- a/docs/libnm-glib/version.xml +++ b/docs/libnm-glib/version.xml @@ -1 +1 @@ -1.0.2 +1.0.4 |