Top | ![]() |
![]() |
![]() |
![]() |
#define | NM_WIMAX_NSP_NAME |
#define | NM_WIMAX_NSP_SIGNAL_QUALITY |
#define | NM_WIMAX_NSP_NETWORK_TYPE |
enum | NMWimaxNspNetworkType |
GObject * nm_wimax_nsp_new (DBusGConnection *connection
,const char *path
);
Creates a new NMWimaxNsp.
const char *
nm_wimax_nsp_get_name (NMWimaxNsp *nsp
);
Gets the name of the wimax NSP
guint32
nm_wimax_nsp_get_signal_quality (NMWimaxNsp *nsp
);
Gets the WPA signal quality of the wimax NSP.
NMWimaxNspNetworkType
nm_wimax_nsp_get_network_type (NMWimaxNsp *nsp
);
Gets the network type of the wimax NSP.
GSList * nm_wimax_nsp_filter_connections (NMWimaxNsp *nsp
,const GSList *connections
);
Filters a given list of connections for a given NMWimaxNsp object and
return connections which may be activated with the access point. Any
returned connections will match the nsp
's network name and other attributes.
nsp |
an NMWimaxNsp to filter connections for |
|
connections |
a list of NMConnection objects to filter. |
[element-type NMConnection] |
a
list of NMConnection objects that could be activated with the given nsp
.
The elements of the list are owned by their creator and should not be freed
by the caller, but the returned list itself is owned by the caller and should
be freed with g_slist_free()
when it is no longer required.
[transfer container][element-type NMConnection]
gboolean nm_wimax_nsp_connection_valid (NMWimaxNsp *nsp
,NMConnection *connection
);
Validates a given connection against a given WiMAX NSP to ensure that the
connection may be activated with that NSP. The connection must match the
nsp
's network name and other attributes.
nsp |
an NMWimaxNsp to validate |
|
connection |
an NMConnection to validate against |