remove some duplication
[project/ubus.git] / ubusmsg.h
index 32cee6b..a34b341 100644 (file)
--- a/ubusmsg.h
+++ b/ubusmsg.h
@@ -6,7 +6,7 @@
 
 #define __packetdata __attribute__((packed)) __attribute__((__aligned__(4)))
 
-#define UBUS_MAX_MSGLEN        65535
+#define UBUS_MAX_MSGLEN        65536
 
 #define UBUS_SYSTEM_OBJECT_EVENT       1
 #define UBUS_SYSTEM_OBJECT_MAX         1024
@@ -38,8 +38,8 @@ enum ubus_msg_type {
        /* invoke a method on a single object */
        UBUS_MSG_INVOKE,
 
-       /* publish an object */
-       UBUS_MSG_PUBLISH,
+       UBUS_MSG_ADD_OBJECT,
+       UBUS_MSG_REMOVE_OBJECT,
 
        /* must be last */
        __UBUS_MSG_LAST,