From 1372848511cb896b80b51ed1a3e9606bd9816631 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Fri, 10 Feb 2023 11:50:34 +0100 Subject: New upstream version 1.42.0 --- docs/libnm/html/NMSettingIP4Config.html | 421 -------------------------------- 1 file changed, 421 deletions(-) delete mode 100644 docs/libnm/html/NMSettingIP4Config.html (limited to 'docs/libnm/html/NMSettingIP4Config.html') diff --git a/docs/libnm/html/NMSettingIP4Config.html b/docs/libnm/html/NMSettingIP4Config.html deleted file mode 100644 index ec5bb9f5..00000000 --- a/docs/libnm/html/NMSettingIP4Config.html +++ /dev/null @@ -1,421 +0,0 @@ - - - - -NMSettingIP4Config: libnm Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NMSettingIP4Config

-

NMSettingIP4Config — Describes IPv4 addressing, routing, and name service properties

-
-
-

Functions

-
---- - - - - - - - - - - - - - - - - - - - - - - -
-NMSetting * - -nm_setting_ip4_config_new () -
const char * - -nm_setting_ip4_config_get_dhcp_client_id () -
const char * - -nm_setting_ip4_config_get_dhcp_fqdn () -
const char * - -nm_setting_ip4_config_get_dhcp_vendor_class_identifier () -
-NMSettingIP4LinkLocal - -nm_setting_ip4_config_get_link_local () -
-
- -
-

Object Hierarchy

-
    GEnum
-    ╰── NMSettingIP4LinkLocal
-
-
-
-

Description

-

The NMSettingIP4Config object is a NMSetting subclass that describes -properties related to IPv4 addressing, routing, and Domain Name Service.

-

NMSettingIP4Config has few properties or methods of its own; it inherits -almost everything from NMSettingIPConfig.

-

NetworkManager supports 5 values for the “method” property -for IPv4. If "auto" is specified then the appropriate automatic method -(DHCP, PPP, etc) is used for the interface and most other properties can be -left unset. If "link-local" is specified, then a link-local address in the -169.254/16 range will be assigned to the interface. If "manual" is -specified, static IP addressing is used and at least one IP address must be -given in the "addresses" property. If "shared" is specified (indicating that -this connection will provide network access to other computers) then the -interface is assigned an address in the 10.42.x.1/24 range and a DHCP and -forwarding DNS server are started, and the interface is NAT-ed to the current -default network connection. "disabled" means IPv4 will not be used on this -connection.

-
-
-

Functions

-
-

nm_setting_ip4_config_new ()

-
NMSetting *
-nm_setting_ip4_config_new (void);
-

Creates a new NMSettingIP4Config object with default values.

-
-

Returns

-

the new empty NMSettingIP4Config object.

-

[transfer full]

-
-
-
-
-

nm_setting_ip4_config_get_dhcp_client_id ()

-
const char *
-nm_setting_ip4_config_get_dhcp_client_id
-                               (NMSettingIP4Config *setting);
-

Returns the value contained in the “dhcp-client-id” -property.

-
-

Parameters

-
----- - - - - - -

setting

the NMSettingIP4Config

 
-
-
-

Returns

-

the configured Client ID to send to the DHCP server when requesting -addresses via DHCP.

-
-
-
-
-

nm_setting_ip4_config_get_dhcp_fqdn ()

-
const char *
-nm_setting_ip4_config_get_dhcp_fqdn (NMSettingIP4Config *setting);
-

Returns the value contained in the “dhcp-fqdn” -property.

-
-

Parameters

-
----- - - - - - -

setting

the NMSettingIP4Config

 
-
-
-

Returns

-

the configured FQDN to send to the DHCP server

-
-

Since: 1.2

-
-
-
-

nm_setting_ip4_config_get_dhcp_vendor_class_identifier ()

-
const char *
-nm_setting_ip4_config_get_dhcp_vendor_class_identifier
-                               (NMSettingIP4Config *setting);
-

Returns the value contained in the “dhcp_vendor_class_identifier” -property.

-
-

Parameters

-
----- - - - - - -

setting

the NMSettingIP4Config

 
-
-
-

Returns

-

the vendor class identifier option to send to the DHCP server

-
-

Since: 1.28

-
-
-
-

nm_setting_ip4_config_get_link_local ()

-
NMSettingIP4LinkLocal
-nm_setting_ip4_config_get_link_local (NMSettingIP4Config *setting);
-

Returns the value contained in the “link_local” -property.

-
-

Parameters

-
----- - - - - - -

setting

the NMSettingIP4Config

 
-
-
-

Returns

-

the link-local configuration

-
-

Since: 1.42, 1.40.4

-
-
-
-

Types and Values

-
-

NM_SETTING_IP4_CONFIG_SETTING_NAME

-
#define NM_SETTING_IP4_CONFIG_SETTING_NAME "ipv4"
-
-
-
-
-

NM_SETTING_IP4_CONFIG_DHCP_CLIENT_ID

-
#define NM_SETTING_IP4_CONFIG_DHCP_CLIENT_ID               "dhcp-client-id"
-
-
-
-
-

NM_SETTING_IP4_CONFIG_DHCP_FQDN

-
#define NM_SETTING_IP4_CONFIG_DHCP_FQDN                    "dhcp-fqdn"
-
-
-
-
-

NM_SETTING_IP4_CONFIG_DHCP_VENDOR_CLASS_IDENTIFIER

-
#define NM_SETTING_IP4_CONFIG_DHCP_VENDOR_CLASS_IDENTIFIER "dhcp-vendor-class-identifier"
-
-
-
-
-

NM_SETTING_IP4_CONFIG_LINK_LOCAL

-
#define NM_SETTING_IP4_CONFIG_LINK_LOCAL                   "link-local"
-
-
-
-
-

NM_SETTING_IP4_CONFIG_METHOD_AUTO

-
#define NM_SETTING_IP4_CONFIG_METHOD_AUTO "auto"
-
-

IPv4 configuration should be automatically determined via a method appropriate -for the hardware interface, ie DHCP or PPP or some other device-specific -manner.

-
-
-
-

NM_SETTING_IP4_CONFIG_METHOD_LINK_LOCAL

-
#define NM_SETTING_IP4_CONFIG_METHOD_LINK_LOCAL "link-local"
-
-

IPv4 configuration should be automatically configured for link-local-only -operation.

-
-
-
-

NM_SETTING_IP4_CONFIG_METHOD_MANUAL

-
#define NM_SETTING_IP4_CONFIG_METHOD_MANUAL "manual"
-
-

All necessary IPv4 configuration (addresses, prefix, DNS, etc) is specified -in the setting's properties.

-
-
-
-

NM_SETTING_IP4_CONFIG_METHOD_SHARED

-
#define NM_SETTING_IP4_CONFIG_METHOD_SHARED "shared"
-
-

This connection specifies configuration that allows other computers to -connect through it to the default network (usually the Internet). The -connection's interface will be assigned a private address, and a DHCP server, -caching DNS server, and Network Address Translation (NAT) functionality will -be started on this connection's interface to allow other devices to connect -through that interface to the default network.

-
-
-
-

NM_SETTING_IP4_CONFIG_METHOD_DISABLED

-
#define NM_SETTING_IP4_CONFIG_METHOD_DISABLED "disabled"
-
-

This connection does not use or require IPv4 address and it should be disabled.

-
-
-
-

enum NMSettingIP4LinkLocal

-

NMSettingIP4LinkLocal values indicate whether IPv4 link-local address protocol should be enabled.

-
-

Members

-
----- - - - - - - - - - - - - - - - - - - - - - - -

NM_SETTING_IP4_LL_DEFAULT

-

Allow fallback to a globally configured default. If unspecified, -fallback to "auto". Note that if "ipv4.method" is "disabled", this always implies link-local -addresses disabled too.

-
 

NM_SETTING_IP4_LL_AUTO

-

Special value which enables LL if "ipv4.method" is set to -"link-local".

-
 

NM_SETTING_IP4_LL_DISABLED

-

Disable IPv4 link-local protocol.

-
 

NM_SETTING_IP4_LL_ENABLED

-

Enable the IPv4 link-local protocol regardless what other protocols -such as DHCP or manually assigned IP addresses might be active.

-
 
-
-

Since: 1.40

-
-
-
- - - \ No newline at end of file -- cgit 1.3.0-6-gf8a5 From b22a7b55d0bc5a7999dccaeacdde745f5ace9d66 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Thu, 23 Feb 2023 17:11:22 +0100 Subject: New upstream version 1.42.2 --- docs/libnm/html/NMSettingIP4Config.html | 421 ++++++++++++++++++++++++++++++++ 1 file changed, 421 insertions(+) create mode 100644 docs/libnm/html/NMSettingIP4Config.html (limited to 'docs/libnm/html/NMSettingIP4Config.html') diff --git a/docs/libnm/html/NMSettingIP4Config.html b/docs/libnm/html/NMSettingIP4Config.html new file mode 100644 index 00000000..f23ef493 --- /dev/null +++ b/docs/libnm/html/NMSettingIP4Config.html @@ -0,0 +1,421 @@ + + + + +NMSettingIP4Config: libnm Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NMSettingIP4Config

+

NMSettingIP4Config — Describes IPv4 addressing, routing, and name service properties

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + + + + + + + + + +
+NMSetting * + +nm_setting_ip4_config_new () +
const char * + +nm_setting_ip4_config_get_dhcp_client_id () +
const char * + +nm_setting_ip4_config_get_dhcp_fqdn () +
const char * + +nm_setting_ip4_config_get_dhcp_vendor_class_identifier () +
+NMSettingIP4LinkLocal + +nm_setting_ip4_config_get_link_local () +
+
+ +
+

Object Hierarchy

+
    GEnum
+    ╰── NMSettingIP4LinkLocal
+
+
+
+

Description

+

The NMSettingIP4Config object is a NMSetting subclass that describes +properties related to IPv4 addressing, routing, and Domain Name Service.

+

NMSettingIP4Config has few properties or methods of its own; it inherits +almost everything from NMSettingIPConfig.

+

NetworkManager supports 5 values for the “method” property +for IPv4. If "auto" is specified then the appropriate automatic method +(DHCP, PPP, etc) is used for the interface and most other properties can be +left unset. If "link-local" is specified, then a link-local address in the +169.254/16 range will be assigned to the interface. If "manual" is +specified, static IP addressing is used and at least one IP address must be +given in the "addresses" property. If "shared" is specified (indicating that +this connection will provide network access to other computers) then the +interface is assigned an address in the 10.42.x.1/24 range and a DHCP and +forwarding DNS server are started, and the interface is NAT-ed to the current +default network connection. "disabled" means IPv4 will not be used on this +connection.

+
+
+

Functions

+
+

nm_setting_ip4_config_new ()

+
NMSetting *
+nm_setting_ip4_config_new (void);
+

Creates a new NMSettingIP4Config object with default values.

+
+

Returns

+

the new empty NMSettingIP4Config object.

+

[transfer full]

+
+
+
+
+

nm_setting_ip4_config_get_dhcp_client_id ()

+
const char *
+nm_setting_ip4_config_get_dhcp_client_id
+                               (NMSettingIP4Config *setting);
+

Returns the value contained in the “dhcp-client-id” +property.

+
+

Parameters

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

setting

the NMSettingIP4Config

 
+
+
+

Returns

+

the configured Client ID to send to the DHCP server when requesting +addresses via DHCP.

+
+
+
+
+

nm_setting_ip4_config_get_dhcp_fqdn ()

+
const char *
+nm_setting_ip4_config_get_dhcp_fqdn (NMSettingIP4Config *setting);
+

Returns the value contained in the “dhcp-fqdn” +property.

+
+

Parameters

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

setting

the NMSettingIP4Config

 
+
+
+

Returns

+

the configured FQDN to send to the DHCP server

+
+

Since: 1.2

+
+
+
+

nm_setting_ip4_config_get_dhcp_vendor_class_identifier ()

+
const char *
+nm_setting_ip4_config_get_dhcp_vendor_class_identifier
+                               (NMSettingIP4Config *setting);
+

Returns the value contained in the “dhcp_vendor_class_identifier” +property.

+
+

Parameters

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

setting

the NMSettingIP4Config

 
+
+
+

Returns

+

the vendor class identifier option to send to the DHCP server

+
+

Since: 1.28

+
+
+
+

nm_setting_ip4_config_get_link_local ()

+
NMSettingIP4LinkLocal
+nm_setting_ip4_config_get_link_local (NMSettingIP4Config *setting);
+

Returns the value contained in the “link_local” +property.

+
+

Parameters

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

setting

the NMSettingIP4Config

 
+
+
+

Returns

+

the link-local configuration

+
+

Since: 1.42

+
+
+
+

Types and Values

+
+

NM_SETTING_IP4_CONFIG_SETTING_NAME

+
#define NM_SETTING_IP4_CONFIG_SETTING_NAME "ipv4"
+
+
+
+
+

NM_SETTING_IP4_CONFIG_DHCP_CLIENT_ID

+
#define NM_SETTING_IP4_CONFIG_DHCP_CLIENT_ID               "dhcp-client-id"
+
+
+
+
+

NM_SETTING_IP4_CONFIG_DHCP_FQDN

+
#define NM_SETTING_IP4_CONFIG_DHCP_FQDN                    "dhcp-fqdn"
+
+
+
+
+

NM_SETTING_IP4_CONFIG_DHCP_VENDOR_CLASS_IDENTIFIER

+
#define NM_SETTING_IP4_CONFIG_DHCP_VENDOR_CLASS_IDENTIFIER "dhcp-vendor-class-identifier"
+
+
+
+
+

NM_SETTING_IP4_CONFIG_LINK_LOCAL

+
#define NM_SETTING_IP4_CONFIG_LINK_LOCAL                   "link-local"
+
+
+
+
+

NM_SETTING_IP4_CONFIG_METHOD_AUTO

+
#define NM_SETTING_IP4_CONFIG_METHOD_AUTO "auto"
+
+

IPv4 configuration should be automatically determined via a method appropriate +for the hardware interface, ie DHCP or PPP or some other device-specific +manner.

+
+
+
+

NM_SETTING_IP4_CONFIG_METHOD_LINK_LOCAL

+
#define NM_SETTING_IP4_CONFIG_METHOD_LINK_LOCAL "link-local"
+
+

IPv4 configuration should be automatically configured for link-local-only +operation.

+
+
+
+

NM_SETTING_IP4_CONFIG_METHOD_MANUAL

+
#define NM_SETTING_IP4_CONFIG_METHOD_MANUAL "manual"
+
+

All necessary IPv4 configuration (addresses, prefix, DNS, etc) is specified +in the setting's properties.

+
+
+
+

NM_SETTING_IP4_CONFIG_METHOD_SHARED

+
#define NM_SETTING_IP4_CONFIG_METHOD_SHARED "shared"
+
+

This connection specifies configuration that allows other computers to +connect through it to the default network (usually the Internet). The +connection's interface will be assigned a private address, and a DHCP server, +caching DNS server, and Network Address Translation (NAT) functionality will +be started on this connection's interface to allow other devices to connect +through that interface to the default network.

+
+
+
+

NM_SETTING_IP4_CONFIG_METHOD_DISABLED

+
#define NM_SETTING_IP4_CONFIG_METHOD_DISABLED "disabled"
+
+

This connection does not use or require IPv4 address and it should be disabled.

+
+
+
+

enum NMSettingIP4LinkLocal

+

NMSettingIP4LinkLocal values indicate whether IPv4 link-local address protocol should be enabled.

+
+

Members

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

NM_SETTING_IP4_LL_DEFAULT

+

Allow fallback to a globally configured default. If unspecified, +fallback to "auto". Note that if "ipv4.method" is "disabled", this always implies link-local +addresses disabled too.

+
 

NM_SETTING_IP4_LL_AUTO

+

Special value which enables LL if "ipv4.method" is set to +"link-local".

+
 

NM_SETTING_IP4_LL_DISABLED

+

Disable IPv4 link-local protocol.

+
 

NM_SETTING_IP4_LL_ENABLED

+

Enable the IPv4 link-local protocol regardless what other protocols +such as DHCP or manually assigned IP addresses might be active.

+
 
+
+

Since: 1.40

+
+
+
+ + + \ No newline at end of file -- cgit 1.3.0-6-gf8a5