X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=ubusmsg.h;h=398b126b6dc01833937749a110181ea0debb1476;hp=c9b92e7132edb039618a21921bc695396a722b0e;hb=24ffe9b582b492054aebb59ac7a175fd65eef5d8;hpb=a9ee3ef0cf20d8a7a807d46db4dfa48e072cca51 diff --git a/ubusmsg.h b/ubusmsg.h index c9b92e7..398b126 100644 --- a/ubusmsg.h +++ b/ubusmsg.h @@ -19,9 +19,11 @@ #define __packetdata __attribute__((packed)) __attribute__((__aligned__(4))) -#define UBUS_MAX_MSGLEN 65536 +#define UBUS_MSG_CHUNK_SIZE 65536 #define UBUS_SYSTEM_OBJECT_EVENT 1 +#define UBUS_SYSTEM_OBJECT_ACL 2 +#define UBUS_SYSTEM_OBJECT_MONITOR 3 #define UBUS_SYSTEM_OBJECT_MAX 1024 struct ubus_msghdr { @@ -68,6 +70,8 @@ enum ubus_msg_type { */ UBUS_MSG_NOTIFY, + UBUS_MSG_MONITOR, + /* must be last */ __UBUS_MSG_LAST, }; @@ -92,10 +96,25 @@ enum ubus_msg_attr { UBUS_ATTR_SUBSCRIBERS, + UBUS_ATTR_USER, + UBUS_ATTR_GROUP, + /* must be last */ UBUS_ATTR_MAX, }; +enum ubus_monitor_attr { + UBUS_MONITOR_CLIENT, + UBUS_MONITOR_PEER, + UBUS_MONITOR_SEND, + UBUS_MONITOR_SEQ, + UBUS_MONITOR_TYPE, + UBUS_MONITOR_DATA, + + /* must be last */ + UBUS_MONITOR_MAX, +}; + enum ubus_msg_status { UBUS_STATUS_OK, UBUS_STATUS_INVALID_COMMAND,