| Liboobs (System configuration management) Reference Manual | ||||
|---|---|---|---|---|
OobsIfaceWireless;
const gchar * oobs_iface_wireless_get_essid (OobsIfaceWireless *iface);
void oobs_iface_wireless_set_essid (OobsIfaceWireless *iface,
const gchar *essid);
const gchar * oobs_iface_wireless_get_key (OobsIfaceWireless *iface);
void oobs_iface_wireless_set_key (OobsIfaceWireless *iface,
const gchar *key);
const gchar * oobs_iface_wireless_get_key_type (OobsIfaceWireless *iface);
void oobs_iface_wireless_set_key_type (OobsIfaceWireless *iface,
const gchar *key_type);
"essid"gchar * : Read / Write "key"gchar * : Read / Write "key-type"gchar * : Read / Write
constgchar * oobs_iface_wireless_get_essid (OobsIfaceWireless *iface);
Returns the network identification (ESSID) that this interface uses.
|
an |
Returns : |
A pointer to the network identification as a string. This string must not be freed, modified or stored. |
void oobs_iface_wireless_set_essid (OobsIfaceWireless *iface, constgchar *essid);
Sets a new network identification (ESSID), overwriting the previous one.
|
An |
|
a new ESSID for the interface. |
constgchar * oobs_iface_wireless_get_key (OobsIfaceWireless *iface);
Returns the network key associated to the ESSID that this interface uses.
|
an |
Returns : |
A pointer to the network key as a string,
or NULL |
void oobs_iface_wireless_set_key (OobsIfaceWireless *iface, constgchar *key);
Sets a new network key for the ESSID that the interface uses.
|
an |
|
a new key for the ESSID, or NULL |
constgchar * oobs_iface_wireless_get_key_type (OobsIfaceWireless *iface);
Returns the type of key that the interface uses.
|
an |
Returns : |
The key type. |
void oobs_iface_wireless_set_key_type (OobsIfaceWireless *iface, constgchar *key_type);
Sets the type of the contained key.
|
an |
|
a new type to define the key. |