diff options
| author | Michael Biebl <biebl@debian.org> | 2012-03-24 01:37:02 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2012-03-24 01:37:02 +0100 |
| commit | de06e5715e780baade318f3490ac7a4c9ce84e32 (patch) | |
| tree | 23fbc3fafc12072476eff98bee60100eb54c29db /src/backends/NetworkManagerGentoo.c | |
| parent | b436a68a20ff3114ded32a7a3d70cdd4954039f9 (diff) | |
Imported Upstream version 0.9.4.0 upstream/0.9.4.0
Diffstat (limited to 'src/backends/NetworkManagerGentoo.c')
| -rw-r--r-- | src/backends/NetworkManagerGentoo.c | 38 |
1 files changed, 13 insertions, 25 deletions
diff --git a/src/backends/NetworkManagerGentoo.c b/src/backends/NetworkManagerGentoo.c index e5b09384..7370645a 100644 --- a/src/backends/NetworkManagerGentoo.c +++ b/src/backends/NetworkManagerGentoo.c @@ -18,7 +18,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2004 Red Hat, Inc. + * (C) Copyright 2004 - 2012 Red Hat, Inc. * (C) Copyright 2004 Dan Willemsen * (C) Copyright 2004 Robert Paskowitz */ @@ -27,18 +27,12 @@ #include <config.h> #endif -#include <stdio.h> -#include <string.h> -#include <stdlib.h> -#include <gio/gio.h> +#include <glib.h> #include "NetworkManagerGeneric.h" -#include "nm-system.h" #include "NetworkManagerUtils.h" #include "nm-logging.h" -#define BUFFER_SIZE 512 - static void openrc_start_lo_if_necessary() { /* No need to run net.lo if it is already running */ @@ -46,18 +40,11 @@ static void openrc_start_lo_if_necessary() nm_spawn_process ("/etc/init.d/net.lo start"); } -/* - * nm_system_enable_loopback - * - * Bring up the loopback interface - * - */ -void nm_system_enable_loopback (void) +void nm_backend_enable_loopback (void) { gchar *comm; - /* If anything goes wrong trying to open /proc/1/comm, we will assume - OpenRC. */ + /* If anything goes wrong trying to open /proc/1/comm, we will assume OpenRC */ if (!g_file_get_contents ("/proc/1/comm", &comm, NULL, NULL)) { nm_log_info (LOGD_CORE, "NetworkManager is running with OpenRC..."); openrc_start_lo_if_necessary (); @@ -77,18 +64,19 @@ void nm_system_enable_loopback (void) g_free (comm); } -/* - * nm_system_update_dns - * - * Make glibc/nscd aware of any changes to the resolv.conf file by - * restarting nscd. Only restart if already running. - * - */ -void nm_system_update_dns (void) +void nm_backend_update_dns (void) { + /* Make glibc/nscd aware of any changes to the resolv.conf file by + * restarting nscd. Only restart if already running. + */ if (g_file_test ("/usr/sbin/nscd", G_FILE_TEST_IS_EXECUTABLE)) { nm_log_info (LOGD_DNS, "Clearing nscd hosts cache."); nm_spawn_process ("/usr/sbin/nscd -i hosts"); } } +int nm_backend_ipv6_use_tempaddr (void) +{ + return nm_generic_ipv6_use_tempaddr (); +} + |