aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_reclaim_attribute_plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_reclaim_attribute_plugin.h')
-rw-r--r--src/include/gnunet_reclaim_attribute_plugin.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/include/gnunet_reclaim_attribute_plugin.h b/src/include/gnunet_reclaim_attribute_plugin.h
index 26a4bb4f2..bdd815dcf 100644
--- a/src/include/gnunet_reclaim_attribute_plugin.h
+++ b/src/include/gnunet_reclaim_attribute_plugin.h
@@ -134,6 +134,27 @@ struct GNUNET_RECLAIM_ATTRIBUTE_PluginFunctions
134 * Number to typename. 134 * Number to typename.
135 */ 135 */
136 GNUNET_RECLAIM_ATTRIBUTE_NumberToTypenameFunction number_to_typename; 136 GNUNET_RECLAIM_ATTRIBUTE_NumberToTypenameFunction number_to_typename;
137
138 /**
139* Attestation Conversion to string.
140*/
141 GNUNET_RECLAIM_ATTRIBUTE_ValueToStringFunction value_to_string_attest;
142
143 /**
144 * Attestation Conversion to binary.
145 */
146 GNUNET_RECLAIM_ATTRIBUTE_StringToValueFunction string_to_value_attest;
147
148 /**
149 * Attestation Typename to number.
150 */
151 GNUNET_RECLAIM_ATTRIBUTE_TypenameToNumberFunction typename_to_number_attest;
152
153 /**
154 * Attestation Number to typename.
155 */
156 GNUNET_RECLAIM_ATTRIBUTE_NumberToTypenameFunction number_to_typename_attest;
157
137}; 158};
138 159
139 160