constify blob_attr_info
This commit is contained in:
parent
0d1a602dcf
commit
d110a016e3
2 changed files with 3 additions and 3 deletions
2
blob.c
2
blob.c
|
@ -132,7 +132,7 @@ static const int blob_type_minlen[BLOB_ATTR_LAST] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
int
|
int
|
||||||
blob_parse(struct blob_attr *attr, struct blob_attr **data, struct blob_attr_info *info, int max)
|
blob_parse(struct blob_attr *attr, struct blob_attr **data, const struct blob_attr_info *info, int max)
|
||||||
{
|
{
|
||||||
struct blob_attr *pos;
|
struct blob_attr *pos;
|
||||||
int found = 0;
|
int found = 0;
|
||||||
|
|
4
blob.h
4
blob.h
|
@ -107,7 +107,7 @@ struct blob_attr_info {
|
||||||
unsigned int type;
|
unsigned int type;
|
||||||
unsigned int minlen;
|
unsigned int minlen;
|
||||||
unsigned int maxlen;
|
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 {
|
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_start(struct blob_buf *buf, int id);
|
||||||
extern void blob_nest_end(struct blob_buf *buf, void *cookie);
|
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 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 *
|
static inline struct blob_attr *
|
||||||
blob_put_string(struct blob_buf *buf, int id, const char *str)
|
blob_put_string(struct blob_buf *buf, int id, const char *str)
|
||||||
|
|
Loading…
Reference in a new issue