Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-02-04 23:57:59 +0300
committerFelix Fietkau <nbd@openwrt.org>2011-02-04 23:57:59 +0300
commit29598e3dc850c2edf721704bf00f6a825077ff6e (patch)
treed35b80dc349ddcf941730f8155ada659ca9ab23d /blobmsg.c
parent36ddbe83b3e8e91500e3fa1e350b6c3cbc4b1ccc (diff)
add functions for allocating and adding a string buffer field
Diffstat (limited to 'blobmsg.c')
-rw-r--r--blobmsg.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/blobmsg.c b/blobmsg.c
index e5de129..ed7a880 100644
--- a/blobmsg.c
+++ b/blobmsg.c
@@ -310,6 +310,37 @@ blobmsg_open_nested(struct blob_buf *buf, const char *name, bool array)
return (void *)offset;
}
+void *
+blobmsg_alloc_string_buffer(struct blob_buf *buf, const char *name, int maxlen)
+{
+ struct blob_attr *attr;
+ void *data_dest;
+
+ attr = blobmsg_new(buf, BLOBMSG_TYPE_STRING, name, maxlen, &data_dest);
+ if (!attr)
+ return NULL;
+
+ data_dest = blobmsg_data(attr);
+ blob_set_raw_len(buf->head, blob_pad_len(buf->head) - blob_raw_len(attr));
+ blob_set_raw_len(attr, blob_raw_len(attr) - maxlen);
+
+ return data_dest;
+}
+
+void
+blobmsg_add_string_buffer(struct blob_buf *buf)
+{
+ struct blob_attr *attr;
+ int len, attrlen;
+
+ attr = blob_next(buf->head);
+ len = strlen(blobmsg_data(attr)) + 1;
+
+ attrlen = blob_raw_len(attr) + len;
+ blob_set_raw_len(attr, attrlen);
+ blob_set_raw_len(buf->head, blob_raw_len(buf->head) + attrlen);
+}
+
int
blobmsg_add_field(struct blob_buf *buf, int type, const char *name,
const void *data, int len)