libyang
libyang copied to clipboard
YANG data modeling language library
In trying to validate a simple configuration with yanglint, I am running into this error: ``` $ yanglint --version yanglint 2.0.243 $ yanglint -ii -t config [email protected] [email protected] example.xml libyang...
in lyb_parse_schema_hash, only search for hash. if 2 shema name 's hash is same, the last one will be lost . create schema and data like below: [examples_yang_and_data_with_hash_conflict.zip](https://github.com/CESNET/libyang/files/9474153/examples_yang_and_data_with_hash_conflict.zip) when we...
Hi, migrating to libyang2, I wanted to support an "error-message" substatement for my extension, as it was possible with libyang1. ``` /* compile supported substatements */ LY_ARRAY_CREATE(cctx->ctx, c_ext->substmts, 1, goto...
Hi ! ``` container test { list server { key "name"; unique "ip port"; leaf name { type string; } leaf ip { type inet:ip-address; } leaf port { type...
What are imp_size, imp, ident_size, ident, features_size, features fields in "lys_module" structure of libyang1. Why it is removed in libyang2 ? I have a code repo which usages libyang1 so...
It can build using a set of well known verions of libyang, for some well known tags. The purpose is to ensure that libyang and FRRouting keeps working together smoothly....
Hi, I my project, we need to define certain YANG extensions (already done), and use those extensions in various places for adjusting UI behavior etc... So far so good. But...
Hi All, I am facing a crash issue with libyang where it not able to parse the rpc-reply from the client which has the yuma tools name space embedded in...
lyb hash only has 8bits, which not sufficient in some cases this PR add a compile option that the devolper could set the hash size to 16bit if needed. by...
in our case, we have many many parameter in a container, so the hash is exhausted. so we have following error inside lyb_hash_siblings(struct lysc_node *sibling, struct hash_table **ht_p): if (i...