- Added transaction_arg_set()

- Modifed coverage script
This commit is contained in:
Olof hagsand 2021-09-27 16:31:21 +02:00
parent 51278d5901
commit 9b6bb3ecbf
6 changed files with 40 additions and 26 deletions

View file

@ -43,14 +43,14 @@
*/
/*! Transaction data describing a system transition from a src to target state
* Clicon internal, presented as void* to app's callback in the 'transaction_data'
* Clixon internal, presented as void* to app's callback in the 'transaction_data'
* type in clicon_backend_api.h
* The struct contains source and target XML tree (e.g. candidate/running)
* But primarily a set of XML tree vectors (dvec, avec, cvec) and associated lengths
* These contain the difference between src and target XML, ie "what has changed".
* It is up to the validate callbacks to ensure that these changes are OK
* It is up to the commit callbacks to enforce these changes in the "state" of
*the system.
* the system.
*/
typedef struct {
uint64_t td_id; /* Transaction id */