summaryrefslogtreecommitdiff
path: root/lib/yang.h
diff options
context:
space:
mode:
authorRenato Westphal <renato@opensourcerouting.org>2018-11-02 21:57:20 -0200
committerRenato Westphal <renato@opensourcerouting.org>2018-11-26 17:35:58 -0200
commit5e02643a64fb6aaaf95f6f9049020f392b5563d5 (patch)
treedfb4c936b5ed11d9cfb0f9f6e8a2daf02e41f3e5 /lib/yang.h
parent80243aef050c1f882a169b402ff5c50fed63b451 (diff)
lib: make it possible to create YANG data nodes containing state data
By default the data nodes created by yang_dnode_new() could contain only configuration data (LYD_OPT_CONFIG). Add a 'config_only' option to yang_dnode_new() so that it can create data nodes containing both configuration and state data. Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'lib/yang.h')
-rw-r--r--lib/yang.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/yang.h b/lib/yang.h
index ab605441ad..b55d7bcb5e 100644
--- a/lib/yang.h
+++ b/lib/yang.h
@@ -371,10 +371,14 @@ extern void *yang_dnode_get_entry(const struct lyd_node *dnode);
* ly_ctx
* libyang context to operate on.
*
+ * config
+ * Specify whether the data node will contain only configuration data (true)
+ * or both configuration data and state data (false).
+ *
* Returns:
* Pointer to newly created libyang data node.
*/
-extern struct lyd_node *yang_dnode_new(struct ly_ctx *ly_ctx);
+extern struct lyd_node *yang_dnode_new(struct ly_ctx *ly_ctx, bool config_only);
/*
* Duplicate a libyang data node.