Bitcoin Core 28.99.0
P2P Digital Currency
|
#include <cstddef>
#include <cstdint>
#include <ios>
#include <set>
#include <string>
#include <unordered_set>
#include <utility>
#include <vector>
#include <attributes.h>
#include <uint256.h>
#include <util/bytevectorhash.h>
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 |
|
strong |
Enumerator | |
---|---|
BASIC | |
INVALID |
Definition at line 92 of file blockfilter.h.
const std::set< BlockFilterType > & AllBlockFilterTypes | ( | ) |
Get a list of known filter types.
Definition at line 164 of file blockfilter.cpp.
bool BlockFilterTypeByName | ( | const std::string & | name, |
BlockFilterType & | filter_type | ||
) |
Find a filter type by its human-readable name.
Definition at line 154 of file blockfilter.cpp.
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 147 of file blockfilter.cpp.
const std::string & ListBlockFilterTypes | ( | ) |
Get a comma-separated list of known filter type names.
Definition at line 178 of file blockfilter.cpp.
|
constexpr |
Definition at line 90 of file blockfilter.h.
|
constexpr |
Definition at line 89 of file blockfilter.h.