rename "active" to "available"
authorFelix Fietkau <nbd@openwrt.org>
Thu, 8 Sep 2011 07:13:06 +0000 (09:13 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Thu, 8 Sep 2011 07:13:56 +0000 (09:13 +0200)
interface.c
interface.h
ubus.c

index 031959c..51e9e92 100644 (file)
@@ -150,10 +150,10 @@ interface_cb(struct device_user *dep, enum device_event ev)
                return;
        }
 
-       if (iface->active == new_state)
+       if (iface->available == new_state)
                return;
 
-       iface->active = new_state;
+       iface->available = new_state;
 
        if (new_state) {
                if (iface->autostart && !config_init)
@@ -303,7 +303,7 @@ interface_set_up(struct interface *iface)
 {
        iface->autostart = true;
 
-       if (!iface->active) {
+       if (!iface->available) {
                interface_add_error(iface, "interface", "NO_DEVICE", NULL, 0);
                return -1;
        }
@@ -329,7 +329,7 @@ interface_start_pending(void)
        struct interface *iface;
 
        list_for_each_entry(iface, &interfaces, list) {
-               if (iface->active && iface->autostart)
+               if (iface->available && iface->autostart)
                        interface_set_up(iface);
        }
 }
index 36bde41..020306c 100644 (file)
@@ -35,7 +35,7 @@ struct interface {
 
        char name[IFNAMSIZ];
 
-       bool active;
+       bool available;
        bool autostart;
 
        enum interface_state state;
diff --git a/ubus.c b/ubus.c
index 6eba0b0..c914cc5 100644 (file)
--- a/ubus.c
+++ b/ubus.c
@@ -154,7 +154,7 @@ netifd_handle_status(struct ubus_context *ctx, struct ubus_object *obj,
        blob_buf_init(&b, 0);
        blobmsg_add_u8(&b, "up", iface->state == IFS_UP);
        blobmsg_add_u8(&b, "pending", iface->state == IFS_SETUP);
-       blobmsg_add_u8(&b, "active", iface->active);
+       blobmsg_add_u8(&b, "available", iface->available);
        blobmsg_add_u8(&b, "autostart", iface->autostart);
        if (iface->main_dev.dev) {
                struct device *dev = iface->main_dev.dev;