Haithem Ben Ghorbal
Haithem Ben Ghorbal
Hi! In libyang 1.x, `LYD_OPT_OBSOLETE` option allowed to return an error instead of a warning during validation with `lyd_validate()` in case an obsolete statement was used. Is there a way...
Hi. ``` typedef listen-ipv6-address { type inet:ipv6-address-no-zone; default "::0"; } ``` If i try to store a value in a leaf of type `inet:ipv6-address`, the plugin callback `lyplg_type_store_ipv6_address_no_zone()` is correctly...
Hi, The `netopeer2-server` binary is in `/usr/sbin` instead of `/usr/bin` since the following commit [24115168e121f75b492f3eb8146794eb7b4ef3f2](https://github.com/CESNET/netopeer2/commit/24115168e121f75b492f3eb8146794eb7b4ef3f2). It seems that you forgot to update the systemd service file in this commit. Can...
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...