X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=uci.h;h=2a1b73baea6d2c3ebd7bba84caacf176fa8d7fe1;hb=c228bf838c82cc7cda868ac75f80d8aab203ca1a;hp=6b5de9a598f3bd19237912fcd46d85f61d7e927f;hpb=9387bced4effec755ccd2a5cdb52c00d0c45990b;p=project%2Fuci.git diff --git a/uci.h b/uci.h index 6b5de9a..2a1b73b 100644 --- a/uci.h +++ b/uci.h @@ -214,19 +214,34 @@ extern int uci_save(struct uci_context *ctx, struct uci_package *p); * uci_commit: commit changes to a package * @ctx: uci context * @p: uci_package struct pointer + * @overwrite: overwrite existing config data and flush history * * committing may reload the whole uci_package data, * the supplied pointer is updated accordingly */ -extern int uci_commit(struct uci_context *ctx, struct uci_package **p); +extern int uci_commit(struct uci_context *ctx, struct uci_package **p, bool overwrite); /** * uci_list_configs: List available uci config files - * * @ctx: uci context */ extern int uci_list_configs(struct uci_context *ctx, char ***list); +/** + * uci_set_savedir: override the default history save directory + * @ctx: uci context + * @dir: directory name + */ +extern int uci_set_savedir(struct uci_context *ctx, char *dir); + +/** + * uci_set_savedir: override the default config storage directory + * @ctx: uci context + * @dir: directory name + */ +extern int uci_set_confdir(struct uci_context *ctx, char *dir); + + /* UCI data structures */ enum uci_type { UCI_TYPE_HISTORY = 0, @@ -236,8 +251,9 @@ enum uci_type { }; enum uci_flags { - UCI_FLAG_STRICT = (1 << 0), /* strict mode for the parser */ - UCI_FLAG_PERROR = (1 << 1), /* print error messages to stderr */ + UCI_FLAG_STRICT = (1 << 0), /* strict mode for the parser */ + UCI_FLAG_PERROR = (1 << 1), /* print parser error messages */ + UCI_FLAG_EXPORT_NAME = (1 << 2), /* when exporting, name unnamed sections */ }; struct uci_element @@ -258,6 +274,9 @@ struct uci_context /* uci runtime flags */ enum uci_flags flags; + char *confdir; + char *savedir; + /* private: */ int errno; const char *func;