Tomáš Pecka
Tomáš Pecka
When `--json` option is specified, print "lldp" command output in JSON format. The neighbors are listed per interface. Motivation behind this is better machine readable processing of the output (parsing...
Hello, I was recently trying to work with YANG nodes defined in extension instance. I was looking at [this libyang unit test](https://github.com/CESNET/libyang/blob/54bf9e2878eb14cb71fb992a0f3816d56e5abde2/tests/utests/data/test_new.c#L480) and I don't understand the format of the...
Hello, lsan reports leaks in the following C code that tries to insert element into user-ordered list at a position after a key that does not exist. Note that the...
Hello, I have a list that I am not authorized to read or modify using NACM. When trying to delete a list entry that is present, I get `SR_ERR_UNAUTHORIZED` from...
Hello, the following simple program crashes with the logs below. ```cpp #include #include int main() { std::optional conn{std::in_place}; auto sess = conn->sessionStart(sysrepo::Datastore::Running); sess.setItem("/ietf-routing:routing/control-plane-protocols/control-plane-protocol[type='infix-routing:ospfv2'][name='default']", std::nullopt); sess.applyChanges(); sess.getData("/ietf-routing:routing/control-plane-protocols/control-plane-protocol[type='ospfv2'][name='default']", 0, sysrepo::GetOptions::Default); return 0;...
Hello, I have found a data race when terminating subscribed notifications subscription. It seems that there can be a data race when terminating subscription which is being cancelled by a...
The RFC 8639 states that if the subscription is terminated due to reaching `stop-time` parameter, it should [create notification `subscription-completed`](https://www.rfc-editor.org/rfc/rfc8639#section-2.7.6). Sysrepo [notifies with `no-such-subscription`](https://github.com/sysrepo/sysrepo/blob/ef93a1253cc97f13671759f6e7790cbf729a5ae9/src/utils/sn_common.c#L893)