mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-05 06:28:05 +02:00
cli: drop duplicate IPv6 property metadata
This commit is contained in:
parent
096ac93f8a
commit
ff273b8221
5 changed files with 4 additions and 14 deletions
|
|
@ -331,16 +331,6 @@ const NmcMetaGenericInfo *const metagen_dhcp_config[_NMC_GENERIC_INFO_TYPE_DHCP_
|
|||
|
||||
/*****************************************************************************/
|
||||
|
||||
const NmcMetaGenericInfo *const nmc_fields_ip6_config[] = {
|
||||
NMC_META_GENERIC ("GROUP"), /* 0 */
|
||||
NMC_META_GENERIC ("ADDRESS"), /* 1 */
|
||||
NMC_META_GENERIC ("GATEWAY"), /* 2 */
|
||||
NMC_META_GENERIC ("ROUTE"), /* 3 */
|
||||
NMC_META_GENERIC ("DNS"), /* 4 */
|
||||
NMC_META_GENERIC ("DOMAIN"), /* 5 */
|
||||
NULL,
|
||||
};
|
||||
|
||||
gboolean
|
||||
print_ip4_config (NMIPConfig *cfg4,
|
||||
const NmcConfig *nmc_config,
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ void nmc_complete_bool (const char *prefix);
|
|||
const char *nmc_error_get_simple_message (GError *error);
|
||||
|
||||
extern const NmcMetaGenericInfo *const metagen_ip4_config[];
|
||||
extern const NmcMetaGenericInfo *const nmc_fields_ip6_config[];
|
||||
extern const NmcMetaGenericInfo *const metagen_ip6_config[];
|
||||
extern const NmcMetaGenericInfo *const metagen_dhcp_config[];
|
||||
|
||||
#endif /* NMC_COMMON_H */
|
||||
|
|
|
|||
|
|
@ -777,7 +777,7 @@ const NmcMetaGenericInfo *const nmc_fields_con_active_details_groups[] = {
|
|||
NMC_META_GENERIC_WITH_NESTED ("GENERAL", metagen_con_active_general), /* 0 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("IP4", metagen_ip4_config), /* 1 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("DHCP4", metagen_dhcp_config), /* 2 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("IP6", nmc_fields_ip6_config + 1), /* 3 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("IP6", metagen_ip6_config), /* 3 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("DHCP6", metagen_dhcp_config), /* 4 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("VPN", metagen_con_active_vpn), /* 5 */
|
||||
NULL,
|
||||
|
|
|
|||
|
|
@ -210,7 +210,7 @@ const NmcMetaGenericInfo *const nmc_fields_dev_show_sections[] = {
|
|||
NMC_META_GENERIC_WITH_NESTED ("NSP", nmc_fields_dev_wimax_list + 1), /* 6 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("IP4", metagen_ip4_config), /* 7 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("DHCP4", metagen_dhcp_config), /* 8 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("IP6", nmc_fields_ip6_config + 1), /* 9 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("IP6", metagen_ip6_config), /* 9 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("DHCP6", metagen_dhcp_config), /* 10 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("BOND", nmc_fields_dev_show_master_prop + 1), /* 11 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("TEAM", nmc_fields_dev_show_team_prop + 1), /* 12 */
|
||||
|
|
|
|||
|
|
@ -190,7 +190,7 @@ complete_fields (const char *option, const char *prefix)
|
|||
|
||||
complete_field (h, metagen_ip4_config);
|
||||
complete_field (h, metagen_dhcp_config);
|
||||
complete_field (h, nmc_fields_ip6_config);
|
||||
complete_field (h, metagen_ip6_config);
|
||||
complete_field (h, metagen_con_show);
|
||||
complete_field (h, metagen_con_active_general);
|
||||
complete_field (h, metagen_con_active_vpn);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue