From: Felix Fietkau Date: Thu, 8 Sep 2011 07:09:49 +0000 (+0200) Subject: change the status information provided via ubus X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=d24673d0f2fbb5b8a38f3e3fec9b06ce9a3dec3f;hp=69b2dcb92b8402b9c6df4d6a041a890fe6468e18 change the status information provided via ubus --- diff --git a/ubus.c b/ubus.c index 2c4e4e6..6eba0b0 100644 --- a/ubus.c +++ b/ubus.c @@ -147,18 +147,13 @@ netifd_handle_status(struct ubus_context *ctx, struct ubus_object *obj, struct ubus_request_data *req, const char *method, struct blob_attr *msg) { - static const char *iface_state[] = { - [IFS_SETUP] = "setup", - [IFS_UP] = "up", - [IFS_TEARDOWN] = "teardown", - [IFS_DOWN] = "down", - }; struct interface *iface; iface = container_of(obj, struct interface, ubus); blob_buf_init(&b, 0); - blobmsg_add_string(&b, "state", iface_state[iface->state]); + 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, "autostart", iface->autostart); if (iface->main_dev.dev) {