summaryrefslogtreecommitdiff
path: root/src/include/gnunet_gnsrecord_plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_gnsrecord_plugin.h')
-rw-r--r--src/include/gnunet_gnsrecord_plugin.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/include/gnunet_gnsrecord_plugin.h b/src/include/gnunet_gnsrecord_plugin.h
index aec22c3af..84b7c3c23 100644
--- a/src/include/gnunet_gnsrecord_plugin.h
+++ b/src/include/gnunet_gnsrecord_plugin.h
@@ -105,6 +105,18 @@ typedef const char *
(*GNUNET_GNSRECORD_NumberToTypenameFunction) (void *cls,
uint32_t type);
+/**
+ * Function called to check for critical records.
+ *
+ * @param cls closure
+ * @param type number of a type to check
+ * @return GNUNET_YES if critical, otherwise GNUNET_NO
+ */
+typedef enum GNUNET_GenericReturnValue
+(*GNUNET_GNSRECORD_IsCriticalFunction) (void *cls,
+ uint32_t type);
+
+
/**
* Each plugin is required to return a pointer to a struct of this
@@ -136,6 +148,11 @@ struct GNUNET_GNSRECORD_PluginFunctions
* Number to typename.
*/
GNUNET_GNSRECORD_NumberToTypenameFunction number_to_typename;
+
+ /**
+ * Is critical.
+ */
+ GNUNET_GNSRECORD_IsCriticalFunction is_critical;
};
/** @} */ /* end of group */