sysrepo
2.12.0
YANG-based system repository for all-around configuration management.
|
API for notification plugins. More...
Go to the source code of this file.
Data Structures | |
struct | srplg_ntf_s |
Notification plugin structure. More... | |
Macros | |
#define | SRPLG_NOTIFICATION |
Macro to define datastore plugin information in external plugins. More... | |
#define | SRPLG_NTF_API_VERSION 3 |
Notification plugin API version. More... | |
Typedefs | |
typedef sr_error_info_t *(* | srntf_access_check )(const struct lys_module *mod, int *read, int *write) |
Check whether the current user has the required access to notification data. More... | |
typedef sr_error_info_t *(* | srntf_access_get )(const struct lys_module *mod, char **owner, char **group, mode_t *perm) |
Get access permissions for notification data of a module. More... | |
typedef sr_error_info_t *(* | srntf_access_set )(const struct lys_module *mod, const char *owner, const char *group, mode_t perm) |
Set access permissions for notification data of a module. More... | |
typedef sr_error_info_t *(* | srntf_disable )(const struct lys_module *mod) |
Destroy notification storage of a specific module. More... | |
typedef sr_error_info_t *(* | srntf_earliest_get )(const struct lys_module *mod, struct timespec *ts) |
Get the timestamp of the earliest stored notification of the module. More... | |
typedef sr_error_info_t *(* | srntf_enable )(const struct lys_module *mod) |
Initialize notification storage for a specific module. More... | |
typedef sr_error_info_t *(* | srntf_replay_next )(const struct lys_module *mod, const struct timespec *start, const struct timespec *stop, struct lyd_node **notif, struct timespec *notif_ts, void *state) |
Replay the next notification of a module. More... | |
typedef sr_error_info_t *(* | srntf_store )(const struct lys_module *mod, const struct lyd_node *notif, const struct timespec *notif_ts) |
Store a notification for replay. More... | |
API for notification plugins.
This source code is licensed under BSD 3-Clause License (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at
https://opensource.org/licenses/BSD-3-Clause
Definition in file plugins_notification.h.