2008-11-03 04:13:42 +00:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
2004-06-24 14:18:37 +00:00
|
|
|
/* 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.
|
|
|
|
|
*
|
2008-06-26 18:31:52 +00:00
|
|
|
* 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.
|
2004-06-24 14:18:37 +00:00
|
|
|
*
|
2008-11-03 04:13:42 +00:00
|
|
|
* Copyright (C) 2004 - 2008 Red Hat, Inc.
|
|
|
|
|
* Copyright (C) 2005 - 2008 Novell, Inc.
|
2004-06-24 14:18:37 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef NETWORK_MANAGER_UTILS_H
|
|
|
|
|
#define NETWORK_MANAGER_UTILS_H
|
|
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
#include <stdio.h>
|
2004-07-06 01:34:10 +00:00
|
|
|
#include <net/ethernet.h>
|
2004-06-24 14:18:37 +00:00
|
|
|
|
2005-12-31 08:21:24 +00:00
|
|
|
#include "nm-device.h"
|
2008-04-21 03:02:32 +00:00
|
|
|
#include "nm-ip4-config.h"
|
|
|
|
|
#include "nm-setting-ip4-config.h"
|
2009-07-29 12:12:41 -04:00
|
|
|
#include "nm-ip6-config.h"
|
|
|
|
|
#include "nm-setting-ip6-config.h"
|
2008-04-27 14:30:06 +00:00
|
|
|
#include "nm-connection.h"
|
2004-06-24 14:18:37 +00:00
|
|
|
|
2008-04-27 12:23:17 +00:00
|
|
|
gboolean nm_ethernet_address_is_valid (const struct ether_addr *test_addr);
|
2004-06-24 14:18:37 +00:00
|
|
|
|
2008-04-27 12:23:17 +00:00
|
|
|
int nm_spawn_process (const char *args);
|
2004-06-24 14:18:37 +00:00
|
|
|
|
2008-03-13 20:52:23 +00:00
|
|
|
char *nm_ether_ntop (const struct ether_addr *mac);
|
|
|
|
|
|
2008-04-21 03:02:32 +00:00
|
|
|
void nm_utils_merge_ip4_config (NMIP4Config *ip4_config, NMSettingIP4Config *setting);
|
2009-07-29 12:12:41 -04:00
|
|
|
void nm_utils_merge_ip6_config (NMIP6Config *ip6_config, NMSettingIP6Config *setting);
|
2008-04-21 03:02:32 +00:00
|
|
|
|
2008-04-27 14:30:06 +00:00
|
|
|
void nm_utils_call_dispatcher (const char *action,
|
|
|
|
|
NMConnection *connection,
|
|
|
|
|
NMDevice *device,
|
|
|
|
|
const char *vpn_iface);
|
|
|
|
|
|
2009-06-11 00:39:12 -04:00
|
|
|
gboolean nm_match_spec_hwaddr (const GSList *specs, const char *hwaddr);
|
|
|
|
|
|
2007-08-15 01:59:19 +00:00
|
|
|
|
2009-01-22 12:35:04 +02:00
|
|
|
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);
|
|
|
|
|
|
2010-03-16 23:51:55 -07:00
|
|
|
void value_hash_add_bool (GHashTable *hash,
|
|
|
|
|
const char *key,
|
|
|
|
|
gboolean val);
|
|
|
|
|
|
2009-07-29 12:12:41 -04:00
|
|
|
gboolean nm_utils_do_sysctl (const char *path, const char *value);
|
2009-01-22 12:35:04 +02:00
|
|
|
|
|
|
|
|
#endif /* NETWORK_MANAGER_UTILS_H */
|