summaryrefslogtreecommitdiffstats
path: root/tdecore/tdehw/networkbackends/network-manager/dbus-introspection/nm-active-connection.xml
blob: ef01ab1609ab95065f87339f3a2797985ecbba83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="UTF-8" ?>

<node name="/" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
  <interface name="org.freedesktop.NetworkManager.Connection.Active">
    <tp:docstring>
      Objects that implement the Connection.Active interface represent an attempt
      to connect to a network using the details provided by a Connection object.
      The Connection.Active object tracks the life-cycle of the connection
      attempt and if successful indicates whether the connected network is the
      "default" or preferred network for access.
    </tp:docstring>

    <property name="Connection" type="o" access="read">
      <tp:docstring>The path of the connection.</tp:docstring>
    </property>
    <property name="SpecificObject" type="o" access="read">
      <tp:docstring>A specific object associated with the active connection.</tp:docstring>
    </property>
    <property name="Uuid" type="s" access="read">
      <tp:docstring>
        The UUID of the connection, provided as a convenience so that clients
        do not have to retrieve all connection details.
      </tp:docstring>
    </property>
    <property name="Devices" type="ao" access="read">
      <tp:docstring>Array of object paths representing devices which are part of this active connection.</tp:docstring>
    </property>
    <property name="State" type="u" access="read" tp:type="NM_ACTIVE_CONNECTION_STATE">
      <tp:docstring>The state of this active connection.</tp:docstring>
    </property>
    <property name="Default" type="b" access="read">
      <tp:docstring>Whether this active connection is the default IPv4 connection, i.e. whether it currently owns the default IPv4 route.</tp:docstring>
    </property>
    <property name="Default6" type="b" access="read">
      <tp:docstring>Whether this active connection is the default IPv6 connection, i.e. whether it currently owns the default IPv6 route.</tp:docstring>
    </property>
    <property name="Vpn" type="b" access="read">
      <tp:docstring>Whether this active connection is also a VPN connection.</tp:docstring>
    </property>
    <property name="Master" type="o" access="read">
      <tp:docstring>The path to the master device if the connection is a slave.</tp:docstring>
    </property>

    <signal name="PropertiesChanged">
        <arg name="properties" type="a{sv}" tp:type="String_Variant_Map">
            <tp:docstring>
                A dictionary mapping property names to variant boxed values
            </tp:docstring>
        </arg>
    </signal>

    <tp:enum name="NM_ACTIVE_CONNECTION_STATE" type="u">
      <tp:enumvalue suffix="UNKNOWN" value="0">
        <tp:docstring>
          The active connection is in an unknown state.
        </tp:docstring>
      </tp:enumvalue>
      <tp:enumvalue suffix="ACTIVATING" value="1">
        <tp:docstring>
          The connection is activating.
        </tp:docstring>
      </tp:enumvalue>
      <tp:enumvalue suffix="ACTIVATED" value="2">
        <tp:docstring>
          The connection is activated.
        </tp:docstring>
      </tp:enumvalue>
      <tp:enumvalue suffix="DEACTIVATING" value="3">
        <tp:docstring>
          The connection is being torn down and cleaned up.
        </tp:docstring>
      </tp:enumvalue>
    </tp:enum>
  </interface>
</node>