Bitcoin ABC  0.28.12
P2P Digital Currency
Classes | Enumerations | Functions | Variables
blockfilter.h File Reference
#include <primitives/block.h>
#include <primitives/blockhash.h>
#include <serialize.h>
#include <uint256.h>
#include <undo.h>
#include <util/bytevectorhash.h>
#include <cstdint>
#include <set>
#include <string>
#include <unordered_set>
#include <vector>
Include dependency graph for blockfilter.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  GCSFilter
 This implements a Golomb-coded set as defined in BIP 158. More...
 
struct  GCSFilter::Params
 
class  BlockFilter
 Complete block filter struct as defined in BIP 157. More...
 

Enumerations

enum class  BlockFilterType : uint8_t { BASIC = 0 , INVALID = 255 }
 

Functions

const std::string & BlockFilterTypeName (BlockFilterType filter_type)
 Get the human-readable name for a filter type. More...
 
bool BlockFilterTypeByName (const std::string &name, BlockFilterType &filter_type)
 Find a filter type by its human-readable name. More...
 
const std::set< BlockFilterType > & AllBlockFilterTypes ()
 Get a list of known filter types. More...
 
const std::string & ListBlockFilterTypes ()
 Get a comma-separated list of known filter type names. More...
 

Variables

constexpr uint8_t BASIC_FILTER_P = 19
 
constexpr uint32_t BASIC_FILTER_M = 784931
 

Enumeration Type Documentation

◆ BlockFilterType

enum BlockFilterType : uint8_t
strong
Enumerator
BASIC 
INVALID 

Definition at line 88 of file blockfilter.h.

Function Documentation

◆ AllBlockFilterTypes()

const std::set<BlockFilterType>& AllBlockFilterTypes ( )

Get a list of known filter types.

Definition at line 160 of file blockfilter.cpp.

Here is the caller graph for this function:

◆ BlockFilterTypeByName()

bool BlockFilterTypeByName ( const std::string &  name,
BlockFilterType filter_type 
)

Find a filter type by its human-readable name.

Definition at line 149 of file blockfilter.cpp.

Here is the caller graph for this function:

◆ BlockFilterTypeName()

const std::string& BlockFilterTypeName ( BlockFilterType  filter_type)

Get the human-readable name for a filter type.

Returns empty string for unknown types.

Definition at line 143 of file blockfilter.cpp.

Here is the caller graph for this function:

◆ ListBlockFilterTypes()

const std::string& ListBlockFilterTypes ( )

Get a comma-separated list of known filter type names.

Definition at line 173 of file blockfilter.cpp.

Here is the caller graph for this function:

Variable Documentation

◆ BASIC_FILTER_M

constexpr uint32_t BASIC_FILTER_M = 784931
constexpr

Definition at line 86 of file blockfilter.h.

◆ BASIC_FILTER_P

constexpr uint8_t BASIC_FILTER_P = 19
constexpr

Definition at line 85 of file blockfilter.h.