libubus: add monitor support
[project/ubus.git] / libubus-req.c
index 2197f2a9fdd997183a3f641653be5e071d5af478..bf19f3670ea5b215190dfcce125c358f616c72a4 100644 (file)
@@ -466,3 +466,9 @@ void __hidden ubus_process_req_msg(struct ubus_context *ctx, struct ubus_msghdr_
                break;
        }
 }
+
+int __ubus_monitor(struct ubus_context *ctx, const char *type)
+{
+       blob_buf_init(&b, 0);
+       return ubus_invoke(ctx, UBUS_SYSTEM_OBJECT_MONITOR, type, b.head, NULL, NULL, 1000);
+}