Top | ![]() |
![]() |
![]() |
![]() |
GQuark | nm_device_wimax_error_quark () |
GObject * | nm_device_wimax_new () |
const char * | nm_device_wimax_get_hw_address () |
NMWimaxNsp * | nm_device_wimax_get_active_nsp () |
NMWimaxNsp * | nm_device_wimax_get_nsp_by_path () |
const GPtrArray * | nm_device_wimax_get_nsps () |
guint | nm_device_wimax_get_center_frequency () |
gint | nm_device_wimax_get_rssi () |
gint | nm_device_wimax_get_cinr () |
gint | nm_device_wimax_get_tx_power () |
const char * | nm_device_wimax_get_bsid () |
NMWimaxNsp * | active-nsp | Read |
gchar * | bsid | Read |
guint | center-frequency | Read |
gint | cinr | Read |
gchar * | hw-address | Read |
NMObjectArray * | nsps | Read |
gint | rssi | Read |
gint | tx-power | Read |
enum | NMDeviceWimaxError |
#define | NM_DEVICE_WIMAX_ERROR |
#define | NM_DEVICE_WIMAX_HW_ADDRESS |
#define | NM_DEVICE_WIMAX_ACTIVE_NSP |
#define | NM_DEVICE_WIMAX_CENTER_FREQUENCY |
#define | NM_DEVICE_WIMAX_RSSI |
#define | NM_DEVICE_WIMAX_CINR |
#define | NM_DEVICE_WIMAX_TX_POWER |
#define | NM_DEVICE_WIMAX_BSID |
#define | NM_DEVICE_WIMAX_NSPS |
GQuark
nm_device_wimax_error_quark (void
);
Registers an error quark for NMDeviceWimax if necessary.
GObject * nm_device_wimax_new (DBusGConnection *connection
,const char *path
);
Creates a new NMDeviceWimax.
const char *
nm_device_wimax_get_hw_address (NMDeviceWimax *wimax
);
Gets the hardware (MAC) address of the NMDeviceWimax
NMWimaxNsp *
nm_device_wimax_get_active_nsp (NMDeviceWimax *wimax
);
Gets the active NMWimaxNsp.
NMWimaxNsp * nm_device_wimax_get_nsp_by_path (NMDeviceWimax *wimax
,const char *path
);
Gets a NMWimaxNsp by path.
const GPtrArray *
nm_device_wimax_get_nsps (NMDeviceWimax *wimax
);
Gets all the scanned NSPs of the NMDeviceWimax.
a GPtrArray containing all the scanned NMWimaxNsps. The returned array is owned by the client and should not be modified.
[element-type NMWimaxNsp]
guint
nm_device_wimax_get_center_frequency (NMDeviceWimax *self
);
Gets 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.
gint
nm_device_wimax_get_rssi (NMDeviceWimax *self
);
Gets the 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.
gint
nm_device_wimax_get_cinr (NMDeviceWimax *self
);
Gets the 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.
gint
nm_device_wimax_get_tx_power (NMDeviceWimax *self
);
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.
const char *
nm_device_wimax_get_bsid (NMDeviceWimax *self
);
Gets the ID of the serving Base Station when the device is connected.
“active-nsp”
property“active-nsp” NMWimaxNsp *
The active NMWimaxNsp of the device.
Flags: Read
“bsid”
property “bsid” gchar *
The ID of the serving base station as received from the network. Has no meaning when the device is not connected.
Flags: Read
Default value: NULL
“center-frequency”
property “center-frequency” guint
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.
Flags: Read
Default value: 0
“cinr”
property “cinr” gint
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.
Flags: Read
Default value: 0
“hw-address”
property “hw-address” gchar *
The hardware (MAC) address of the device.
Flags: Read
Default value: NULL
“nsps”
property “nsps” NMObjectArray *
List of all WiMAX Network Service Providers the device can see.
Flags: Read
Since: 0.9.10
“rssi”
property “rssi” gint
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.
Flags: Read
Default value: 0
“nsp-added”
signalvoid user_function (NMDeviceWimax *self, GObject *nsp, gpointer user_data)
Notifies that a NMWimaxNsp is added to the wimax device.
self |
the wimax device that received the signal |
|
nsp |
the new NSP |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run First
“nsp-removed”
signalvoid user_function (NMDeviceWimax *self, GObject *nsp, gpointer user_data)
Notifies that a NMWimaxNsp is removed from the wimax device.
self |
the wimax device that received the signal |
|
nsp |
the removed NSP |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run First