mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-24 18:20:07 +01:00
Note that this patch doesn't effectively change any code. Functions moved from nm-system: * nm_system_apply_ip?_config → nm_ip?_config_commit * ip?_dest_in_same_subnet → nm_ip?_config_destination_is_direct Functions moved from NetworkManagerUtils: * nm_utils_merge_ip?_config → nm_ip?_config_merge_setting Functions renamed (and moved down to form one group): * nm_ip?_config_new_for_interface → nm_ip?_config_capture (The rationale for the rename is that from the achitectural point of view it doesn't matter whether the function creates a new object or updates an existing one. After the rename, it's obvious that nm_ip?_config_capture() and nm_ip?_config_commit() are counterparts of each other.)
94 lines
3.7 KiB
C
94 lines
3.7 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
/* NetworkManager -- Network link manager
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Copyright (C) 2004 - 2011 Red Hat, Inc.
|
|
* Copyright (C) 2005 - 2008 Novell, Inc.
|
|
*/
|
|
|
|
#ifndef NETWORK_MANAGER_UTILS_H
|
|
#define NETWORK_MANAGER_UTILS_H
|
|
|
|
#include <glib.h>
|
|
#include <stdio.h>
|
|
#include <net/ethernet.h>
|
|
|
|
#include "nm-ip4-config.h"
|
|
#include "nm-setting-ip4-config.h"
|
|
#include "nm-ip6-config.h"
|
|
#include "nm-setting-ip6-config.h"
|
|
#include "nm-connection.h"
|
|
|
|
gboolean nm_ethernet_address_is_valid (const struct ether_addr *test_addr);
|
|
|
|
int nm_spawn_process (const char *args);
|
|
|
|
gboolean nm_match_spec_string (const GSList *specs, const char *string);
|
|
gboolean nm_match_spec_hwaddr (const GSList *specs, const char *hwaddr);
|
|
gboolean nm_match_spec_s390_subchannels (const GSList *specs, const char *subchannels);
|
|
gboolean nm_match_spec_interface_name (const GSList *specs, const char *interface_name);
|
|
|
|
const char *nm_utils_get_shared_wifi_permission (NMConnection *connection);
|
|
|
|
GHashTable *value_hash_create (void);
|
|
void value_hash_add (GHashTable *hash,
|
|
const char *key,
|
|
GValue *value);
|
|
|
|
void value_hash_add_str (GHashTable *hash,
|
|
const char *key,
|
|
const char *str);
|
|
|
|
void value_hash_add_object_path (GHashTable *hash,
|
|
const char *key,
|
|
const char *op);
|
|
|
|
void value_hash_add_uint (GHashTable *hash,
|
|
const char *key,
|
|
guint32 val);
|
|
|
|
void value_hash_add_bool (GHashTable *hash,
|
|
const char *key,
|
|
gboolean val);
|
|
|
|
void value_hash_add_object_property (GHashTable *hash,
|
|
const char *key,
|
|
GObject *object,
|
|
const char *prop,
|
|
GType val_type);
|
|
|
|
gboolean nm_utils_do_sysctl (const char *path, const char *value);
|
|
|
|
gboolean nm_utils_get_proc_sys_net_value (const char *path,
|
|
const char *iface,
|
|
gint32 *out_value);
|
|
|
|
gboolean nm_utils_get_proc_sys_net_value_with_bounds (const char *path,
|
|
const char *iface,
|
|
gint32 *out_value,
|
|
gint32 valid_min,
|
|
gint32 valid_max);
|
|
|
|
void nm_utils_complete_generic (NMConnection *connection,
|
|
const char *ctype,
|
|
const GSList *existing,
|
|
const char *format,
|
|
const char *preferred,
|
|
gboolean default_enable_ipv6);
|
|
|
|
char *nm_utils_new_vlan_name (const char *parent_iface, guint32 vlan_id);
|
|
|
|
#endif /* NETWORK_MANAGER_UTILS_H */
|