aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-08-19 00:46:39 +0200
committerChristian Grothoff <christian@grothoff.org>2020-08-19 00:46:39 +0200
commit1eda2878cf1efef694c911c318427f14ecbdf8f3 (patch)
tree1052f9175563d001b966e430b62e7dd360b568eb /src/include
parent076acb9981bc141c7905e0dcf3f9fcda3497a8aa (diff)
downloadgnunet-1eda2878cf1efef694c911c318427f14ecbdf8f3.tar.gz
gnunet-1eda2878cf1efef694c911c318427f14ecbdf8f3.zip
-fix set/seti migration issues
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_block_lib.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/include/gnunet_block_lib.h b/src/include/gnunet_block_lib.h
index 18ca6f63f..73b51252e 100644
--- a/src/include/gnunet_block_lib.h
+++ b/src/include/gnunet_block_lib.h
@@ -137,6 +137,19 @@ enum GNUNET_BLOCK_Type
137 * Contains either special marker elements or a nested block. 137 * Contains either special marker elements or a nested block.
138 */ 138 */
139 GNUNET_BLOCK_TYPE_CONSENSUS_ELEMENT = 25, 139 GNUNET_BLOCK_TYPE_CONSENSUS_ELEMENT = 25,
140
141 /**
142 * Block for testing set intersection. If first byte of the block
143 * is non-zero, the block is considered invalid.
144 */
145 GNUNET_BLOCK_TYPE_SETI_TEST = 24,
146
147 /**
148 * Block for testing set union. If first byte of the block
149 * is non-zero, the block is considered invalid.
150 */
151 GNUNET_BLOCK_TYPE_SETU_TEST = 24,
152
140}; 153};
141 154
142 155