Michal Vasko

Results 1492 comments of Michal Vasko

Note that the whole ordering requirements are somewhat unfortunate as there are ambiguous cases such as this one and other problems (I remember something about it in the mailing list...

Debian package scripts are still not final but they are perfectly fine for building your own packages. However, we are now using `apkg` for creating them, so you first need...

I have replied by email since that is how you asked originally. So, you can try to provide a patch to fix this properly but if you are fine with...

Once you get the `data` node, you need to cast it to `lyd_node_any` and then get the rest of the content from its `tree` member.

I assume this line is crashing (you should be getting wrong parameter type warnings from your compiler). ```C if(LY_ERR != lyd_find_xpath(server_opts.ctx, config_xpath, &set)) ``` The first parameter is XPath context...

I have never encountered such a behavior so I am not sure what the problem may be. Could you maybe help with debugging this? If you just use `gdb` to...

You could have at least reference the [specification](https://datatracker.ietf.org/doc/html/rfc8040#section-3.5.3). Should be fairly simple to support but we have no spare time right now for implementing it and have no use-case so...

> have a function that translates model-path to xpath and vice versa. Not sure that is really possible because that would require there to already be support in *libyang* for...

> Indeed, it's not any XPATH expression just the once that are related to object paths I think the restrictions are much more severe than that, you cannot have any...