Hi,
I have implemented my Yang based on 5-c-stats example.
But I have a requirement to add the leaf-list also in my model.
I see that i don’t get any callback in get_next() api if there is “leaf-list” used, but if the “list” is used then i get the callback in get_next api().
How can i achieve that?
Can you please help me in implementing the leaf-list?
Sample Yang:-
container arpentries {
config false;
tailf:callpoint arpe;
leaf ip {
type inet:ip-address;
}
leaf ifname {
type string;
}
leaf-list sample {
type string;
}
}