aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_gnsrecord_plugin.h
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2022-02-03 18:12:10 +0100
committerMartin Schanzenbach <schanzen@gnunet.org>2022-02-03 18:12:10 +0100
commit3d72be07448fd435640c6d0fdc2859601319d07e (patch)
tree253ed9212019d08725166300f449645e34c463b1 /src/include/gnunet_gnsrecord_plugin.h
parent3146c65c67b93ce4eb5bf27775167fde65f5e3c4 (diff)
downloadgnunet-3d72be07448fd435640c6d0fdc2859601319d07e.tar.gz
gnunet-3d72be07448fd435640c6d0fdc2859601319d07e.zip
GNS: Introduce CRITICAL flag. Fixes #7169
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 *
105(*GNUNET_GNSRECORD_NumberToTypenameFunction) (void *cls, 105(*GNUNET_GNSRECORD_NumberToTypenameFunction) (void *cls,
106 uint32_t type); 106 uint32_t type);
107 107
108/**
109 * Function called to check for critical records.
110 *
111 * @param cls closure
112 * @param type number of a type to check
113 * @return GNUNET_YES if critical, otherwise GNUNET_NO
114 */
115typedef enum GNUNET_GenericReturnValue
116(*GNUNET_GNSRECORD_IsCriticalFunction) (void *cls,
117 uint32_t type);
118
119
108 120
109/** 121/**
110 * Each plugin is required to return a pointer to a struct of this 122 * Each plugin is required to return a pointer to a struct of this
@@ -136,6 +148,11 @@ struct GNUNET_GNSRECORD_PluginFunctions
136 * Number to typename. 148 * Number to typename.
137 */ 149 */
138 GNUNET_GNSRECORD_NumberToTypenameFunction number_to_typename; 150 GNUNET_GNSRECORD_NumberToTypenameFunction number_to_typename;
151
152 /**
153 * Is critical.
154 */
155 GNUNET_GNSRECORD_IsCriticalFunction is_critical;
139}; 156};
140 157
141/** @} */ /* end of group */ 158/** @} */ /* end of group */