add blobmsg_get_bool
[project/libubox.git] / blob.c
diff --git a/blob.c b/blob.c
index cafd74c..edf55d4 100644 (file)
--- a/blob.c
+++ b/blob.c
@@ -80,6 +80,14 @@ blob_buf_init(struct blob_buf *buf, int id)
        return 0;
 }
 
+void
+blob_buf_free(struct blob_buf *buf)
+{
+       free(buf->buf);
+       buf->buf = NULL;
+       buf->buflen = 0;
+}
+
 struct blob_attr *
 blob_new(struct blob_buf *buf, int id, int payload)
 {
@@ -132,9 +140,9 @@ static const int blob_type_minlen[BLOB_ATTR_LAST] = {
 };
 
 bool
-blob_check_type(void *ptr, int len, int type)
+blob_check_type(const void *ptr, int len, int type)
 {
-       char *data = ptr;
+       const char *data = ptr;
 
        if (type >= BLOB_ATTR_LAST)
                return false;
@@ -147,7 +155,7 @@ blob_check_type(void *ptr, int len, int type)
                        return false;
        }
 
-       if (type == BLOB_ATTR_STRING && data[len] != 0)
+       if (type == BLOB_ATTR_STRING && data[len - 1] != 0)
                return false;
 
        return true;
@@ -193,3 +201,18 @@ blob_parse(struct blob_attr *attr, struct blob_attr **data, const struct blob_at
        }
        return found;
 }
+
+bool
+blob_attr_equal(const struct blob_attr *a1, const struct blob_attr *a2)
+{
+       if (!a1 && !a2)
+               return true;
+
+       if (!a1 || !a2)
+               return false;
+
+       if (blob_pad_len(a1) != blob_pad_len(a2))
+               return false;
+
+       return !memcmp(a1, a2, blob_pad_len(a1));
+}