1
0
mirror of https://github.com/stargieg/bacnet-stack synced 2025-10-26 23:35:52 +08:00

make nc propertis r/w for uci

This commit is contained in:
Patrick Grimm
2013-03-29 03:44:49 +01:00
parent 4dad1f0edc
commit 70268c0205
4 changed files with 155 additions and 50 deletions

View File

@@ -31,10 +31,12 @@ int ucix_get_option_int(struct uci_context *ctx,
const char *p, const char *s, const char *o, int def);
void ucix_add_section(struct uci_context *ctx,
const char *p, const char *s, const char *t);
void ucix_add_option(struct uci_context *ctx,
const char *p, const char *s, const char *o, const char *t);
void ucix_add_option_int(struct uci_context *ctx,
const char *p, const char *s, const char *o, int t);
void ucix_add_option(struct uci_context *ctx,
const char *p, const char *s, const char *o, const char *t);
void ucix_set_list(struct uci_context *ctx,
const char *p, const char *s, const char *o, const char *value[254][64], int *l);
int ucix_commit(struct uci_context *ctx, const char *p);
void ucix_revert(struct uci_context *ctx,
const char *p, const char *s, const char *o);