From d8b0572b4f26ee5e07f8b02842022471c8ac8ed4 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Fri, 10 Oct 2008 12:24:53 -1000 Subject: Get rid of some iface flags that were not doing anything anymore. The ipv4method and ipv6method variables are in use now, remove flags that are not used anymore. --- isys/iface.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'isys/iface.h') diff --git a/isys/iface.h b/isys/iface.h index 8785db2b3..497feaa40 100644 --- a/isys/iface.h +++ b/isys/iface.h @@ -42,15 +42,9 @@ enum { IPV6_UNUSED_METHOD, IPV6_AUTO_METHOD, IPV6_DHCP_METHOD, #define IPV6_FIRST_METHOD IPV6_AUTO_METHOD #define IPV6_LAST_METHOD IPV6_MANUAL_METHOD -/* Flags for the iface_t */ +/* Flags for the iface_t (do we need these?) */ #define IFACE_FLAGS_NO_WRITE_RESOLV_CONF (((uint64_t) 1) << 0) -/* FIXME: do we need these? */ -#define IFACE_FLAGS_IS_PRESET (((uint64_t) 1) << 1) -#define IFACE_FLAGS_IS_DYNAMIC (((uint64_t) 1) << 2) - #define IFACE_NO_WRITE_RESOLV_CONF(a) ((a) & IFACE_FLAGS_NO_WRITE_RESOLV_CONF) -#define IFACE_IS_PRESET(a) ((a) & IFACE_FLAGS_IS_PRESET) -#define IFACE_IS_DYNAMIC(a) ((a) & IFACE_FLAGS_IS_DYNAMIC) /* Macros for starting NetworkManager */ #define NETWORKMANAGER "/usr/sbin/NetworkManager" -- cgit