![]() |
![]() |
![]() |
libnm-glib Reference Manual | ![]() |
---|---|---|---|---|
Top | Description | Object Hierarchy | Properties |
#define NM_WIMAX_NSP_NAME #define NM_WIMAX_NSP_SIGNAL_QUALITY #define NM_WIMAX_NSP_NETWORK_TYPE enum NMWimaxNspNetworkType; NMWimaxNsp; NMWimaxNspClass; GObject * nm_wimax_nsp_new (DBusGConnection *connection
,const char *path
); const char * nm_wimax_nsp_get_name (NMWimaxNsp *nsp
); guint32 nm_wimax_nsp_get_signal_quality (NMWimaxNsp *nsp
); NMWimaxNspNetworkType nm_wimax_nsp_get_network_type (NMWimaxNsp *nsp
); GSList * nm_wimax_nsp_filter_connections (NMWimaxNsp *nsp
,const GSList *connections
); gboolean nm_wimax_nsp_connection_valid (NMWimaxNsp *nsp
,NMConnection *connection
);
typedef enum { NM_WIMAX_NSP_NETWORK_TYPE_UNKNOWN = 0, NM_WIMAX_NSP_NETWORK_TYPE_HOME = 1, NM_WIMAX_NSP_NETWORK_TYPE_PARTNER = 2, NM_WIMAX_NSP_NETWORK_TYPE_ROAMING_PARTNER = 3 } NMWimaxNspNetworkType;
typedef struct { NMObjectClass parent; /* Padding for future expansion */ void (*_reserved1) (void); void (*_reserved2) (void); void (*_reserved3) (void); void (*_reserved4) (void); void (*_reserved5) (void); void (*_reserved6) (void); } NMWimaxNspClass;
GObject * nm_wimax_nsp_new (DBusGConnection *connection
,const char *path
);
Creates a new NMWimaxNsp.
|
the DBusGConnection |
|
the D-Bus object path of the WiMAX NSP |
Returns : |
a new WiMAX NSP. [transfer full] |
const char * nm_wimax_nsp_get_name (NMWimaxNsp *nsp
);
Gets the name of the wimax NSP
|
a NMWimaxNsp |
Returns : |
the name |
guint32 nm_wimax_nsp_get_signal_quality (NMWimaxNsp *nsp
);
Gets the WPA signal quality of the wimax NSP.
|
a NMWimaxNsp |
Returns : |
the signal quality |
NMWimaxNspNetworkType nm_wimax_nsp_get_network_type (NMWimaxNsp *nsp
);
Gets the network type of the wimax NSP.
|
a NMWimaxNsp |
Returns : |
the network type |
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.
|
an NMWimaxNsp to filter connections for |
|
a list of NMConnection objects to filter. [element-type NetworkManager.Connection] |
Returns : |
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 NetworkManager.Connection]
|
gboolean nm_wimax_nsp_connection_valid (NMWimaxNsp *nsp
,NMConnection *connection
);