summaryrefslogtreecommitdiff
path: root/src/libcharon/plugins/vici/vici_builder.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcharon/plugins/vici/vici_builder.h')
-rw-r--r--src/libcharon/plugins/vici/vici_builder.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libcharon/plugins/vici/vici_builder.h b/src/libcharon/plugins/vici/vici_builder.h
index 5a5cc8a03..f7d21eb8f 100644
--- a/src/libcharon/plugins/vici/vici_builder.h
+++ b/src/libcharon/plugins/vici/vici_builder.h
@@ -119,6 +119,14 @@ struct vici_builder_t {
* @return vici message, NULL on error
*/
vici_message_t* (*finalize)(vici_builder_t *this);
+
+ /**
+ * Destroy a vici builder without finalization.
+ *
+ * Note that finalize() already destroys the message, and calling destroy()
+ * is required only if the message does not get finalize()d.
+ */
+ void (*destroy)(vici_builder_t *this);
};
/**