We want to have different applications registering to provide data in a list where the first part of the key is an identity type. Each application wants to handle the lower and upper bound on that part of the key using confd_register_range_data_cb().
Question is, for a set of identity values, what are the lower and upper values? Do I use the values from the header file? For example if the (sorted) values are:
#define oc_pol_types_BGP 346655972
#define oc_pol_types_ISIS 574246373
#define oc_pol_types_DIRECTLY_CONNECTED 615714624
#define oc_pol_types_OSPF 619009612
#define oc_pol_types_OSPF3 630371620
#define oc_pol_types_STATIC 977019608
Then should the lower range value be oc_pol_types_BGP and the upper range value is oc_pol_types_STATIC?
Thanks,
Barry