summaryrefslogtreecommitdiff
path: root/introspection/org.freedesktop.NetworkManager.Device.WiMax.xml
blob: ac2a393a0f9ccc78ae0e444226b41b86e156734e (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0" encoding="UTF-8"?>
<node name="/">
  <!--
      org.freedesktop.NetworkManager.Device.WiMax:
      @short_description: WiMax Device

  -->
  <interface name="org.freedesktop.NetworkManager.Device.WiMax">

    <!--
        GetNspList:
        @nsps: List of NSP object paths

        Get the list of NSPs visible to this device.
    -->
    <method name="GetNspList">
      <arg name="nsps" type="ao" direction="out"/>
      </method>

    <!--
        Nsps:

        List of object paths of Network Service Providers (NSPs) visible to this
        WiMAX device.
    -->
    <property name="Nsps" type="ao" access="read"/>

    <!--
        HwAddress:

        Hardware address of the device.
    -->
    <property name="HwAddress" type="s" access="read"/>

    <!--
        CenterFrequency:

        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.
    -->
    <property name="CenterFrequency" type="u" access="read"/>

    <!--
        Rssi:

        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.
    -->
    <property name="Rssi" type="i" access="read"/>

    <!--
        Cinr:

        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.
    -->
    <property name="Cinr" type="i" access="read"/>

    <!--
        TxPower:

        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.
    -->
    <property name="TxPower" type="i" access="read"/>

    <!--
        Bsid:

        The ID of the serving base station as received from the network. Has no
        meaning when the device is not connected.
    -->
    <property name="Bsid" type="s" access="read"/>

    <!--
        ActiveNsp:

        Object path of the NSP currently used by the WiMax device.
    -->
    <property name="ActiveNsp" type="o" access="read"/>

    <!--
        PropertiesChanged:
        @properties: A dictionary mapping property names to variant boxed values.

        DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0.
    -->
    <signal name="PropertiesChanged">
        <arg name="properties" type="a{sv}"/>
        </signal>

    <!--
        NspAdded:
        @nsp: The object path of the newly found NSP.

        Emitted when a new NSP is found by the device.
    -->
    <signal name="NspAdded">
        <arg name="nsp" type="o"/>
        </signal>

    <!--
        NspRemoved:
        @nsp: The object path of the NSP that has disappeared.

        Emitted when an NSP disappears from view of the device.
    -->
    <signal name="NspRemoved">
      <arg name="nsp" type="o"/>
    </signal>
  </interface>
</node>