Mini Shell

Direktori : /usr/share/dbus-1/interfaces/
Upload File :
Current File : //usr/share/dbus-1/interfaces/org.freedesktop.portal.NetworkMonitor.xml

<?xml version="1.0"?>
<!--
 Copyright (C) 2016 Red Hat, Inc.

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2 of the License, or (at your option) any later version.

 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General Public
 License along with this library. If not, see <http://www.gnu.org/licenses/>.

 Author: Matthias Clasen <mclasen@redhat.com>
-->
<node name="/" xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
  <!--
      org.freedesktop.portal.NetworkMonitor:
      @short_description: Network monitoring portal

      The NetworkMonitor interface provides network status information
      to sandboxed applications. It is not a portal in the strict sense,
      since it does not involve user interaction. Applications are
      expected to use this interface indirectly, via a library API
      such as the GLib GNetworkMonitor interface.

      This documentation describes version 3 of this interface.
  -->
  <interface name="org.freedesktop.portal.NetworkMonitor">
    <!--
        changed:

        Emitted when the network configuration changes.
    -->
    <signal name="changed"/>
    <!--
        GetAvailable:
        @available: whether the network is available

        Returns whether the network is considered available.
        That is, whether the system as a default route for
        at least one of IPv4 or IPv6.

        This method was added in version 2 to replace
        the available property.
    -->
    <method name="GetAvailable">
      <arg type='b' name='available' direction='out'/>
    </method>
    <!--
        GetMetered:
        @metered: whether the network is metered

        Returns whether the network is considered metered.
        That is, whether the system as traffic flowing through
        the default connection that is subject ot limitations
        by service providers.

        This method was added in version 2 to replace
        the metered property.
    -->
    <method name="GetMetered">
      <arg type='b' name='metered' direction='out'/>
    </method>
    <!--
        GetConnectivity:
        @connectivity: the level of connectivity

        Returns more detailed information about the host's network
        connectivity. The meaning of the value is:
        <simplelist>
          <member>1: Local only. The host is not configured with a route to the internet.</member>
          <member>2: Limited connectivity. The host is connected to a network, but can't reach the full internet.</member>
          <member>3: Captive portal. The host is behind a captive portal and cannot reach the full internet.</member>
          <member>4: Full network. The host connected to a network, and can reach the full internet.</member>
        </simplelist>

        This method was added in version 2 to replace
        the connectivity property.
    -->
    <method name="GetConnectivity">
      <arg type='u' name='connectivity' direction='out'/>
    </method>
    <!--
        GetStatus:
        @status: a dictionary with the current values

        Returns the three values all at once.

        The following results get returned via @status:
        <variablelist>
          <varlistentry>
            <term>available b</term>
            <listitem><para>
              Whether the network is available.
            </para></listitem>
          </varlistentry>
          <varlistentry>
            <term>metered b</term>
            <listitem><para>
              Whether the network is metered.
            </para></listitem>
          </varlistentry>
          <varlistentry>
            <term>connectivity u</term>
            <listitem><para>
              The level of connectivity.
            </para></listitem>
          </varlistentry>
        </variablelist>

        This method was added in version 3 to avoid multiple round-trips.
    -->
    <method name="GetStatus">
      <arg type='a{sv}' name='status' direction='out'/>
    </method>

    <!--
        CanReach:
        @hostname: the hostname to reach
        @port: the port to reach
        @reachable: Whether the hostname:port was reachable

        Returns whether the given hostname is believed to be reachable.
        This method was added in version 3.
    -->
    <method name="CanReach">
      <arg type='s' name='hostname' direction='in'/>
      <arg type='u' name='port' direction='in'/>
      <arg type='b' name='reachable' direction='out'/>
    </method>

    <property name="version" type="u" access="read"/>
  </interface>
</node>

Zerion Mini Shell 1.0