lua: add a prototype for luaopen_ubus so that -Wmissing-declarations can be enabled
[project/ubus.git] / ubusmsg.h
index a34b341..607ecd4 100644 (file)
--- a/ubusmsg.h
+++ b/ubusmsg.h
@@ -1,3 +1,16 @@
+/*
+ * Copyright (C) 2011 Felix Fietkau <nbd@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 2.1
+ * as published by the Free Software Foundation
+ *
+ * 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.
+ */
+
 #ifndef __UBUSMSG_H
 #define __UBUSMSG_H
 
@@ -41,6 +54,10 @@ enum ubus_msg_type {
        UBUS_MSG_ADD_OBJECT,
        UBUS_MSG_REMOVE_OBJECT,
 
+       /* watch an object, notify on remove */
+       UBUS_MSG_ADD_WATCH,
+       UBUS_MSG_REMOVE_WATCH,
+
        /* must be last */
        __UBUS_MSG_LAST,
 };
@@ -58,6 +75,7 @@ enum ubus_msg_attr {
        UBUS_ATTR_SIGNATURE,
 
        UBUS_ATTR_DATA,
+       UBUS_ATTR_TARGET,
 
        /* must be last */
        UBUS_ATTR_MAX,
@@ -71,6 +89,9 @@ enum ubus_msg_status {
        UBUS_STATUS_NOT_FOUND,
        UBUS_STATUS_NO_DATA,
        UBUS_STATUS_PERMISSION_DENIED,
+       UBUS_STATUS_TIMEOUT,
+       UBUS_STATUS_NOT_SUPPORTED,
+       UBUS_STATUS_UNKNOWN_ERROR,
        __UBUS_STATUS_LAST
 };