Hi,
typedef struct confd_tag_value {
struct xml_tag tag;
confd_value_t v;
} confd_tag_value_t;
This struct gets filled as part of a config commit, but here no vars w.r.t to the operation done(i.e create/merge…etc) is being stored.
Is there any way to know what operation has been done during a commit by accessing any of the confd structure/Api ??
The requirement is to distinguish between the newly created node (i.e op = create) vs updating of an existing node (op=merge) during that specific commit cycle.
Thank you in advance.