From 34bb501be08aa2b313d88e67d6e0a7e0a3f9cfa6 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Sun, 5 May 2024 00:07:30 +0200 Subject: New upstream version 1.47.90 --- docs/libnm/html/NMSettingWireless.html | 403 +++++++++++++++++++++++++++++---- 1 file changed, 359 insertions(+), 44 deletions(-) (limited to 'docs/libnm/html/NMSettingWireless.html') diff --git a/docs/libnm/html/NMSettingWireless.html b/docs/libnm/html/NMSettingWireless.html index b3693736..06eb71b9 100644 --- a/docs/libnm/html/NMSettingWireless.html +++ b/docs/libnm/html/NMSettingWireless.html @@ -50,7 +50,7 @@ -GBytes * +GBytes * nm_setting_wireless_get_ssid () @@ -72,7 +72,7 @@ -guint32 +guint32 nm_setting_wireless_get_channel () @@ -87,7 +87,7 @@ -guint32 +guint32 nm_setting_wireless_get_rate () @@ -95,7 +95,7 @@ -guint32 +guint32 nm_setting_wireless_get_tx_power () @@ -131,7 +131,7 @@ -guint32 +guint32 nm_setting_wireless_get_num_mac_blacklist_items () @@ -146,7 +146,7 @@ -gboolean +gboolean nm_setting_wireless_add_mac_blacklist_item () @@ -162,7 +162,7 @@ -gboolean +gboolean nm_setting_wireless_remove_mac_blacklist_item_by_value () @@ -177,8 +177,62 @@ +const char *const * + + +nm_setting_wireless_get_mac_address_denylist () + + + + +guint32 + + +nm_setting_wireless_get_num_mac_denylist_items () + + + +const char * + + +nm_setting_wireless_get_mac_denylist_item () + + + + +gboolean + + +nm_setting_wireless_add_mac_denylist_item () + + + + +void + + +nm_setting_wireless_remove_mac_denylist_item () + + + + +gboolean + + +nm_setting_wireless_remove_mac_denylist_item_by_value () + + + -guint32 +void + + +nm_setting_wireless_clear_mac_denylist_items () + + + + +guint32 nm_setting_wireless_get_mtu () @@ -186,7 +240,7 @@ -gboolean +gboolean nm_setting_wireless_get_hidden () @@ -194,7 +248,7 @@ -guint32 +guint32 nm_setting_wireless_get_powersave () @@ -210,7 +264,7 @@ -gboolean +gboolean nm_setting_wireless_add_seen_bssid () @@ -218,7 +272,7 @@ -guint32 +guint32 nm_setting_wireless_get_num_seen_bssids () @@ -233,7 +287,7 @@ -gboolean +gboolean nm_setting_wireless_ap_security_compatible () @@ -320,6 +374,10 @@ #define +NM_SETTING_WIRELESS_MAC_ADDRESS_DENYLIST + + +#define NM_SETTING_WIRELESS_MTU @@ -398,7 +456,7 @@ nm_setting_wireless_new (void

nm_setting_wireless_get_ssid ()

-
GBytes *
+
GBytes *
 nm_setting_wireless_get_ssid (NMSettingWireless *setting);

Parameters

@@ -474,7 +532,7 @@ nm_setting_wireless_get_band (

nm_setting_wireless_get_channel ()

-
guint32
+
guint32
 nm_setting_wireless_get_channel (NMSettingWireless *setting);

Parameters

@@ -524,7 +582,7 @@ nm_setting_wireless_get_bssid (

nm_setting_wireless_get_rate ()

-
guint32
+
guint32
 nm_setting_wireless_get_rate (NMSettingWireless *setting);

nm_setting_wireless_get_rate has been deprecated since version 1.44 and should not be used in newly-written code.

@@ -553,7 +611,7 @@ nm_setting_wireless_get_rate (

nm_setting_wireless_get_tx_power ()

-
guint32
+
guint32
 nm_setting_wireless_get_tx_power (NMSettingWireless *setting);

nm_setting_wireless_get_tx_power has been deprecated since version 1.44 and should not be used in newly-written code.

@@ -663,6 +721,10 @@ nm_setting_wireless_get_generate_mac_address_mask
const char *const *
 nm_setting_wireless_get_mac_address_blacklist
                                (NMSettingWireless *setting);
+
+

nm_setting_wireless_get_mac_address_blacklist has been deprecated since version 1.48. and should not be used in newly-written code.

+

Use nm_setting_wireless_get_mac_address_denylist() instead.

+

Parameters

@@ -686,9 +748,13 @@ nm_setting_wireless_get_mac_address_blacklist

nm_setting_wireless_get_num_mac_blacklist_items ()

-
guint32
+
guint32
 nm_setting_wireless_get_num_mac_blacklist_items
                                (NMSettingWireless *setting);
+
+

nm_setting_wireless_get_num_mac_blacklist_items has been deprecated since version 1.48. and should not be used in newly-written code.

+

Use nm_setting_wireless_get_num_mac_denylist_items() instead.

+

Parameters

@@ -706,7 +772,7 @@ nm_setting_wireless_get_num_mac_blacklist_items

Returns

-

the number of blacklisted MAC addresses

+

the number of blacklist MAC addresses


@@ -715,7 +781,11 @@ nm_setting_wireless_get_num_mac_blacklist_items
const char *
 nm_setting_wireless_get_mac_blacklist_item
                                (NMSettingWireless *setting,
-                                guint32 idx);
+ guint32 idx); +
+

nm_setting_wireless_get_mac_blacklist_item has been deprecated since version 1.48. and should not be used in newly-written code.

+

Use nm_setting_wireless_get_mac_denylist_item() instead.

+

Since 1.46, access at index "len" is allowed and returns NULL.

Parameters

@@ -741,7 +811,7 @@ nm_setting_wireless_get_mac_blacklist_item

Returns

-

the blacklisted MAC address string (hex-digits-and-colons notation) +

the denylisted MAC address string (hex-digits-and-colons notation) at index idx

@@ -749,11 +819,15 @@ at index idx

nm_setting_wireless_add_mac_blacklist_item ()

-
gboolean
+
gboolean
 nm_setting_wireless_add_mac_blacklist_item
                                (NMSettingWireless *setting,
                                 const char *mac);
-

Adds a new MAC address to the “mac-address-blacklist” property.

+
+

nm_setting_wireless_add_mac_blacklist_item has been deprecated since version 1.48. and should not be used in newly-written code.

+

Use nm_setting_wireless_add_mac_denylist_item() instead.

+
+

Adds a new MAC address to the “mac-address-denylist” property.

Parameters

@@ -770,7 +844,7 @@ nm_setting_wireless_add_mac_blacklist_item - + @@ -778,7 +852,7 @@ nm_setting_wireless_add_mac_blacklist_item

Returns

-

TRUE if the MAC address was added; FALSE if the MAC address +

TRUE if the MAC address was added; FALSE if the MAC address is invalid or was already present

@@ -788,9 +862,13 @@ is invalid or was already present

void
 nm_setting_wireless_remove_mac_blacklist_item
                                (NMSettingWireless *setting,
-                                guint32 idx);
+ guint32 idx); +
+

nm_setting_wireless_remove_mac_blacklist_item has been deprecated since version 1.48. and should not be used in newly-written code.

+

Use nm_setting_wireless_remove_mac_denylist_item() instead.

+

Removes the MAC address at index idx - from the blacklist.

+ from the denylist.

Parameters

mac

the MAC address string (hex-digits-and-colons notation) to blacklist

the MAC address string (hex-digits-and-colons notation) to denylist

 
@@ -817,12 +895,16 @@ nm_setting_wireless_remove_mac_blacklist_item

nm_setting_wireless_remove_mac_blacklist_item_by_value ()

-
gboolean
+
gboolean
 nm_setting_wireless_remove_mac_blacklist_item_by_value
                                (NMSettingWireless *setting,
                                 const char *mac);
+
+

nm_setting_wireless_remove_mac_blacklist_item_by_value has been deprecated since version 1.48. and should not be used in newly-written code.

+

Use nm_setting_wireless_remove_mac_denylist_item_by_value() instead.

+

Removes the MAC address mac - from the blacklist.

+ from the denylist.

Parameters

@@ -840,7 +922,7 @@ nm_setting_wireless_remove_mac_blacklist_item_by_value +the denylist

@@ -848,7 +930,7 @@ the blacklist

Returns

-

TRUE if the MAC address was found and removed; FALSE if it was not.

+

TRUE if the MAC address was found and removed; FALSE if it was not.


@@ -857,7 +939,11 @@ the blacklist

void
 nm_setting_wireless_clear_mac_blacklist_items
                                (NMSettingWireless *setting);
-

Removes all blacklisted MAC addresses.

+
+

nm_setting_wireless_clear_mac_blacklist_items has been deprecated since version 1.48. and should not be used in newly-written code.

+

Use nm_setting_wireless_clear_mac_denylist_items() instead.

+
+

Removes all denylisted MAC addresses.

Parameters

mac

the MAC address string (hex-digits-and-colons notation) to remove from -the blacklist

 
@@ -876,8 +962,231 @@ nm_setting_wireless_clear_mac_blacklist_items
+

nm_setting_wireless_get_mac_address_denylist ()

+
const char *const *
+nm_setting_wireless_get_mac_address_denylist
+                               (NMSettingWireless *setting);
+
+

Parameters

+
+++++ + + + + + +

setting

the NMSettingWireless

 
+
+
+

Returns

+

the “mac-address-denylist” property of the setting

+
+

Since: 1.48

+
+
+
+

nm_setting_wireless_get_num_mac_denylist_items ()

+
guint32
+nm_setting_wireless_get_num_mac_denylist_items
+                               (NMSettingWireless *setting);
+
+

Parameters

+
+++++ + + + + + +

setting

the NMSettingWireless

 
+
+
+

Returns

+

the number of denylisted MAC addresses

+
+

Since: 1.48

+
+
+
+

nm_setting_wireless_get_mac_denylist_item ()

+
const char *
+nm_setting_wireless_get_mac_denylist_item
+                               (NMSettingWireless *setting,
+                                guint32 idx);
+
+

Parameters

+
+++++ + + + + + + + + + + + + +

setting

the NMSettingWireless

 

idx

the zero-based index of the MAC address entry

 
+
+
+

Returns

+

the denylisted MAC address string (hex-digits-and-colons notation) +at index idx +

+
+

Since: 1.48

+
+
+
+

nm_setting_wireless_add_mac_denylist_item ()

+
gboolean
+nm_setting_wireless_add_mac_denylist_item
+                               (NMSettingWireless *setting,
+                                const char *mac);
+

Adds a new MAC address to the “mac-address-denylist” property.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

setting

the NMSettingWireless

 

mac

the MAC address string (hex-digits-and-colons notation) to denylist

 
+
+
+

Returns

+

TRUE if the MAC address was added; FALSE if the MAC address +is invalid or was already present

+
+

Since: 1.48

+
+
+
+

nm_setting_wireless_remove_mac_denylist_item ()

+
void
+nm_setting_wireless_remove_mac_denylist_item
+                               (NMSettingWireless *setting,
+                                guint32 idx);
+

Removes the MAC address at index idx + from the denylist.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

setting

the NMSettingWireless

 

idx

index number of the MAC address

 
+
+

Since: 1.48

+
+
+
+

nm_setting_wireless_remove_mac_denylist_item_by_value ()

+
gboolean
+nm_setting_wireless_remove_mac_denylist_item_by_value
+                               (NMSettingWireless *setting,
+                                const char *mac);
+

Removes the MAC address mac + from the denylist.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

setting

the NMSettingWireless

 

mac

the MAC address string (hex-digits-and-colons notation) to remove from +the denylist

 
+
+
+

Returns

+

TRUE if the MAC address was found and removed; FALSE if it was not.

+
+

Since: 1.48

+
+
+
+

nm_setting_wireless_clear_mac_denylist_items ()

+
void
+nm_setting_wireless_clear_mac_denylist_items
+                               (NMSettingWireless *setting);
+

Removes all denylisted MAC addresses.

+
+

Parameters

+
+++++ + + + + + +

setting

the NMSettingWireless

 
+
+

Since: 1.48

+
+
+

nm_setting_wireless_get_mtu ()

-
guint32
+
guint32
 nm_setting_wireless_get_mtu (NMSettingWireless *setting);

Parameters

@@ -902,7 +1211,7 @@ nm_setting_wireless_get_mtu (

nm_setting_wireless_get_hidden ()

-
gboolean
+
gboolean
 nm_setting_wireless_get_hidden (NMSettingWireless *setting);

Parameters

@@ -927,7 +1236,7 @@ nm_setting_wireless_get_hidden (

nm_setting_wireless_get_powersave ()

-
guint32
+
guint32
 nm_setting_wireless_get_powersave (NMSettingWireless *setting);

Parameters

@@ -981,7 +1290,7 @@ setting


nm_setting_wireless_add_seen_bssid ()

-
gboolean
+
gboolean
 nm_setting_wireless_add_seen_bssid (NMSettingWireless *setting,
                                     const char *bssid);

Adds a new Wi-Fi AP's BSSID to the previously seen BSSID list of the setting. @@ -1012,14 +1321,14 @@ not be preserved.

Returns

-

TRUE if bssid -was already known, FALSE if not

+

TRUE if bssid +was already known, FALSE if not


nm_setting_wireless_get_num_seen_bssids ()

-
guint32
+
guint32
 nm_setting_wireless_get_num_seen_bssids
                                (NMSettingWireless *setting);
@@ -1047,7 +1356,7 @@ nm_setting_wireless_get_num_seen_bssids

nm_setting_wireless_get_seen_bssid ()

const char *
 nm_setting_wireless_get_seen_bssid (NMSettingWireless *setting,
-                                    guint32 i);
+ guint32 i);

Parameters

@@ -1079,7 +1388,7 @@ nm_setting_wireless_get_seen_bssid (

nm_setting_wireless_ap_security_compatible ()

-
gboolean
+
gboolean
 nm_setting_wireless_ap_security_compatible
                                (NMSettingWireless *s_wireless,
                                 NMSettingWirelessSecurity *s_wireless_sec,
@@ -1109,7 +1418,7 @@ compatible with which access points.

- + @@ -1139,8 +1448,8 @@ capabilities

Returns

-

TRUE if the given settings are compatible with the access point's -security flags and mode, FALSE if they are not.

+

TRUE if the given settings are compatible with the access point's +security flags and mode, FALSE if they are not.


@@ -1385,6 +1694,12 @@ incompatible with other flags


+

NM_SETTING_WIRELESS_MAC_ADDRESS_DENYLIST

+
#define NM_SETTING_WIRELESS_MAC_ADDRESS_DENYLIST      "mac-address-denylist"
+
+
+
+

NM_SETTING_WIRELESS_MTU

#define NM_SETTING_WIRELESS_MTU                       "mtu"
 
-- cgit 1.3.0-6-gf8a5

s_wireless_sec

a NMSettingWirelessSecurity or NULL

a NMSettingWirelessSecurity or NULL