notifications FEATURE basic support for sending notifications from server side
diff --git a/src/messages_p.h b/src/messages_p.h
index ca171f7..e832b08 100644
--- a/src/messages_p.h
+++ b/src/messages_p.h
@@ -68,6 +68,11 @@
struct lyd_node *tree; /**< libyang data tree of the message (NETCONF operation) */
};
+struct nc_server_notif {
+ char *eventtime; /**< eventTime of the notification */
+ struct lyd_node *tree; /**< libyang data tree of the message */
+};
+
struct nc_client_reply_error {
NC_RPL type;
struct nc_err *err;