X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=ubusmsg.h;h=05d5c04a2e3464a54f63dc28ffe07fac3727bd5e;hp=1aa2fbe4d855ea413c228163b72356bc18536679;hb=62cdfc3d16f815e24b9c62eb9a3bacd9aa8f621a;hpb=42bc27ae38d92f4fe11872b0f9d57f8d3578dcfe diff --git a/ubusmsg.h b/ubusmsg.h index 1aa2fbe..05d5c04 100644 --- a/ubusmsg.h +++ b/ubusmsg.h @@ -54,6 +54,21 @@ enum ubus_msg_type { UBUS_MSG_ADD_OBJECT, UBUS_MSG_REMOVE_OBJECT, + /* + * subscribe/unsubscribe to object notifications + * The unsubscribe message is sent from ubusd when + * the object disappears + */ + UBUS_MSG_SUBSCRIBE, + UBUS_MSG_UNSUBSCRIBE, + + /* + * send a notification to all subscribers of an object. + * when sent from the server, it indicates a subscription + * status change + */ + UBUS_MSG_NOTIFY, + /* must be last */ __UBUS_MSG_LAST, }; @@ -71,6 +86,12 @@ enum ubus_msg_attr { UBUS_ATTR_SIGNATURE, UBUS_ATTR_DATA, + UBUS_ATTR_TARGET, + + UBUS_ATTR_ACTIVE, + UBUS_ATTR_NO_REPLY, + + UBUS_ATTR_SUBSCRIBERS, /* must be last */ UBUS_ATTR_MAX, @@ -85,6 +106,9 @@ enum ubus_msg_status { UBUS_STATUS_NO_DATA, UBUS_STATUS_PERMISSION_DENIED, UBUS_STATUS_TIMEOUT, + UBUS_STATUS_NOT_SUPPORTED, + UBUS_STATUS_UNKNOWN_ERROR, + UBUS_STATUS_CONNECTION_FAILED, __UBUS_STATUS_LAST };