aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_block_lib.h
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2012-11-14 10:50:52 +0000
committerBart Polot <bart@net.in.tum.de>2012-11-14 10:50:52 +0000
commit6884e874ab4d23f8a0d9b2cc1f3a1794e606cdeb (patch)
treef97f541046d5aca3008e52600c2cf9d0b72745c4 /src/include/gnunet_block_lib.h
parentcb515930b242a7e33b012a22b227102325a33e0c (diff)
downloadgnunet-6884e874ab4d23f8a0d9b2cc1f3a1794e606cdeb.tar.gz
gnunet-6884e874ab4d23f8a0d9b2cc1f3a1794e606cdeb.zip
Added GNUNET_BLOCK_EVALUATION_RESULT_IRRELEVANT
Diffstat (limited to 'src/include/gnunet_block_lib.h')
-rw-r--r--src/include/gnunet_block_lib.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/include/gnunet_block_lib.h b/src/include/gnunet_block_lib.h
index 90a3549b1..cd4b2a0ac 100644
--- a/src/include/gnunet_block_lib.h
+++ b/src/include/gnunet_block_lib.h
@@ -148,21 +148,26 @@ enum GNUNET_BLOCK_EvaluationResult
148 GNUNET_BLOCK_EVALUATION_RESULT_INVALID = 3, 148 GNUNET_BLOCK_EVALUATION_RESULT_INVALID = 3,
149 149
150 /** 150 /**
151 * Block does not match xquery (valid result, not relevant for the request)
152 */
153 GNUNET_BLOCK_EVALUATION_RESULT_IRRELEVANT = 4,
154
155 /**
151 * Query is valid, no reply given. 156 * Query is valid, no reply given.
152 */ 157 */
153 GNUNET_BLOCK_EVALUATION_REQUEST_VALID = 4, 158 GNUNET_BLOCK_EVALUATION_REQUEST_VALID = 10,
154 159
155 /** 160 /**
156 * Query format does not match block type (invalid query). For 161 * Query format does not match block type (invalid query). For
157 * example, xquery not given or xquery_size not appropriate for 162 * example, xquery not given or xquery_size not appropriate for
158 * type. 163 * type.
159 */ 164 */
160 GNUNET_BLOCK_EVALUATION_REQUEST_INVALID = 5, 165 GNUNET_BLOCK_EVALUATION_REQUEST_INVALID = 11,
161 166
162 /** 167 /**
163 * Specified block type not supported by this plugin. 168 * Specified block type not supported by this plugin.
164 */ 169 */
165 GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED = 6 170 GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED = 20
166}; 171};
167 172
168 173