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
path: root/blob.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-12-06 01:31:33 +0300
committerFelix Fietkau <nbd@openwrt.org>2010-12-06 01:31:33 +0300
commitd110a016e354d66cf86dddb53e3257ac9821896d (patch)
tree8e3ad6e95c23910b61f7256be239b72c44fd6c76 /blob.h
parent0d1a602dcfe4e13e470a0c0bb23e1d99be3f15b5 (diff)
constify blob_attr_info
Diffstat (limited to 'blob.h')
-rw-r--r--blob.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/blob.h b/blob.h
index e598c5e..401a355 100644
--- a/blob.h
+++ b/blob.h
@@ -107,7 +107,7 @@ struct blob_attr_info {
unsigned int type;
unsigned int minlen;
unsigned int maxlen;
- bool (*validate)(struct blob_attr_info *, struct blob_attr *);
+ bool (*validate)(const struct blob_attr_info *, struct blob_attr *);
};
struct blob_buf {
@@ -219,7 +219,7 @@ extern struct blob_attr *blob_new(struct blob_buf *buf, int id, int payload);
extern void *blob_nest_start(struct blob_buf *buf, int id);
extern void blob_nest_end(struct blob_buf *buf, void *cookie);
extern struct blob_attr *blob_put(struct blob_buf *buf, int id, const void *ptr, int len);
-extern int blob_parse(struct blob_attr *attr, struct blob_attr **data, struct blob_attr_info *info, int max);
+extern int blob_parse(struct blob_attr *attr, struct blob_attr **data, const struct blob_attr_info *info, int max);
static inline struct blob_attr *
blob_put_string(struct blob_buf *buf, int id, const char *str)