watch add/remove -> subscribe/unsubscribe:
[project/ubus.git] / ubusmsg.h
index 607ecd4..833d7bf 100644 (file)
--- a/ubusmsg.h
+++ b/ubusmsg.h
@@ -54,9 +54,13 @@ 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,
+       /*
+        * subscribe/unsubscribe to object notifications
+        * The unsubscribe message is sent from ubusd when
+        * the object disappears
+        */
+       UBUS_MSG_SUBSCRIBE,
+       UBUS_MSG_UNSUBSCRIBE,
 
        /* must be last */
        __UBUS_MSG_LAST,
@@ -92,6 +96,7 @@ enum ubus_msg_status {
        UBUS_STATUS_TIMEOUT,
        UBUS_STATUS_NOT_SUPPORTED,
        UBUS_STATUS_UNKNOWN_ERROR,
+       UBUS_STATUS_CONNECTION_FAILED,
        __UBUS_STATUS_LAST
 };