consensus block, either nested block or marker More...
#include "platform.h"
#include "consensus_protocol.h"
#include "gnunet_block_plugin.h"
#include "gnunet_block_group_lib.h"
Go to the source code of this file.
Data Structures | |
struct | BlockContext |
Our closure. More... | |
Functions | |
static enum GNUNET_GenericReturnValue | block_plugin_consensus_check_query (void *cls, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size) |
Function called to validate a query. More... | |
static enum GNUNET_GenericReturnValue | block_plugin_consensus_check_block (void *cls, enum GNUNET_BLOCK_Type type, const void *block, size_t block_size) |
Function called to validate a block for storage. More... | |
static enum GNUNET_BLOCK_ReplyEvaluationResult | block_plugin_consensus_check_reply (void *cls, enum GNUNET_BLOCK_Type type, struct GNUNET_BLOCK_Group *group, const struct GNUNET_HashCode *query, const void *xquery, size_t xquery_size, const void *reply_block, size_t reply_block_size) |
Function called to validate a reply to a request. More... | |
static enum GNUNET_GenericReturnValue | block_plugin_consensus_get_key (void *cls, enum GNUNET_BLOCK_Type type, const void *block, size_t block_size, struct GNUNET_HashCode *key) |
Function called to obtain the key for a block. More... | |
void * | libgnunet_plugin_block_consensus_init (void *cls) |
Entry point for the plugin. More... | |
void * | libgnunet_plugin_block_consensus_done (void *cls) |
Exit point from the plugin. More... | |
consensus block, either nested block or marker
Definition in file plugin_block_consensus.c.
|
static |
Function called to validate a query.
cls | closure |
type | block type |
query | original query (hash) |
xquery | extrended query data (can be NULL, depending on type) |
xquery_size | number of bytes in xquery |
Definition at line 62 of file plugin_block_consensus.c.
References GNUNET_break, and GNUNET_SYSERR.
Referenced by libgnunet_plugin_block_consensus_init().
|
static |
Function called to validate a block for storage.
cls | closure |
type | block type |
block | block data to validate |
block_size | number of bytes in block |
Definition at line 84 of file plugin_block_consensus.c.
References GNUNET_FS_Handle::cfg, ctx, GNUNET_BLOCK_check_block(), GNUNET_BLOCK_context_create(), GNUNET_break_op, GNUNET_NO, GNUNET_OK, ConsensusElement::marker, and ConsensusElement::payload_type.
Referenced by libgnunet_plugin_block_consensus_init().
|
static |
Function called to validate a reply to a request.
Note that it is assumed that the reply has already been matched to the key (and signatures checked) as it would be done with the GetKeyFunction and the BlockEvaluationFunction.
cls | closure |
type | block type |
group | which block group to use for evaluation |
query | original query (hash) |
xquery | extrended query data (can be NULL, depending on type) |
xquery_size | number of bytes in xquery |
reply_block | response to validate |
reply_block_size | number of bytes in reply_block |
Definition at line 126 of file plugin_block_consensus.c.
References GNUNET_FS_Handle::cfg, ctx, GNUNET_assert, GNUNET_BLOCK_check_reply(), GNUNET_BLOCK_context_create(), GNUNET_BLOCK_REPLY_OK_MORE, ConsensusElement::marker, and ConsensusElement::payload_type.
Referenced by libgnunet_plugin_block_consensus_init().
|
static |
Function called to obtain the key for a block.
cls | closure |
type | block type |
block | block to get the key for |
block_size | number of bytes in block |
key | set to the key (query) for the given block |
Definition at line 168 of file plugin_block_consensus.c.
References GNUNET_SYSERR.
Referenced by libgnunet_plugin_block_consensus_init().
void * libgnunet_plugin_block_consensus_init | ( | void * | cls | ) |
Entry point for the plugin.
Definition at line 185 of file plugin_block_consensus.c.
References block_plugin_consensus_check_block(), block_plugin_consensus_check_query(), block_plugin_consensus_check_reply(), block_plugin_consensus_get_key(), cfg, GNUNET_FS_Handle::cfg, GNUNET_BLOCK_PluginFunctions::check_block, GNUNET_BLOCK_PluginFunctions::check_query, GNUNET_BLOCK_PluginFunctions::check_reply, GNUNET_BLOCK_PluginFunctions::cls, ctx, GNUNET_BLOCK_PluginFunctions::get_key, GNUNET_BLOCK_TYPE_ANY, GNUNET_BLOCK_TYPE_CONSENSUS_ELEMENT, GNUNET_new, and GNUNET_BLOCK_PluginFunctions::types.
void * libgnunet_plugin_block_consensus_done | ( | void * | cls | ) |
Exit point from the plugin.
Definition at line 214 of file plugin_block_consensus.c.
References GNUNET_BLOCK_PluginFunctions::cls, ctx, GNUNET_BLOCK_context_destroy(), and GNUNET_free.