diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2024-01-26 03:08:55 +0200 |
|---|---|---|
| committer | Igor Ryzhov <iryzhov@nfware.com> | 2024-01-31 02:20:13 +0200 |
| commit | e13c590abe1217c8088a9493069a448d356d5c00 (patch) | |
| tree | 2dfa3059982030a496fab3391d39705af8e79117 /lib/mgmt_fe_client.h | |
| parent | 4317c8ffa6675c9f91b710c7c75739706e1edfef (diff) | |
mgmtd: add ability to choose datastore to get data from
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'lib/mgmt_fe_client.h')
| -rw-r--r-- | lib/mgmt_fe_client.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/mgmt_fe_client.h b/lib/mgmt_fe_client.h index 17ec354a1a..50ebb80149 100644 --- a/lib/mgmt_fe_client.h +++ b/lib/mgmt_fe_client.h @@ -384,6 +384,9 @@ extern int mgmt_fe_send_regnotify_req(struct mgmt_fe_client *client, * req_id * Client request ID. * + * datastore + * Datastore for getting data. + * * result_type * The LYD_FORMAT of the result. * @@ -401,8 +404,9 @@ extern int mgmt_fe_send_regnotify_req(struct mgmt_fe_client *client, */ extern int mgmt_fe_send_get_data_req(struct mgmt_fe_client *client, uint64_t session_id, uint64_t req_id, - LYD_FORMAT result_type, uint8_t flags, - uint8_t defaults, const char *xpath); + uint8_t datastore, LYD_FORMAT result_type, + uint8_t flags, uint8_t defaults, + const char *xpath); /* * Destroy library and cleanup everything. |
