X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=ubusmsg.h;h=c9b92e7132edb039618a21921bc695396a722b0e;hb=2c71017cfb1d370abd1b52b3f59874e253914684;hp=10f84db2045f99f2532beea2e7ab65c5426a9dcf;hpb=34161692fae8a5d81bc73e8005effd1fd13aa412;p=project%2Fubus.git diff --git a/ubusmsg.h b/ubusmsg.h index 10f84db..c9b92e7 100644 --- a/ubusmsg.h +++ b/ubusmsg.h @@ -29,7 +29,6 @@ struct ubus_msghdr { uint8_t type; uint16_t seq; uint32_t peer; - struct blob_attr data[]; } __packetdata; enum ubus_msg_type { @@ -54,9 +53,20 @@ 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, + + /* + * 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, @@ -77,6 +87,11 @@ enum ubus_msg_attr { UBUS_ATTR_DATA, UBUS_ATTR_TARGET, + UBUS_ATTR_ACTIVE, + UBUS_ATTR_NO_REPLY, + + UBUS_ATTR_SUBSCRIBERS, + /* must be last */ UBUS_ATTR_MAX, };