mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
Merge bitcoin/bitcoin#26100: doc: clarify that NetPermissionFlags::Implicit is only about whitelists
f362920c2c
doc: clarify that NetPermissionFlags::Implicit is only about whitelists (Vasil Dimov) Pull request description: `NetPermissionFlags::Implicit` applies just to connections from `-whitebind` or `-whitelist`, clarify that in its comment. ACKs for top commit: Zero-1729: crACKf362920c2c
aureleoules: ACKf362920c2c
hernanmarino: re ACKf362920c2c
Tree-SHA512: 03f6f8be221c6819bdd0b5b56b69b4e3a6dd25e5ca5a247eeb1261113144b9b74cf064a0b7815317782a0a18365dd3dab97963bd238e9b231dbe7e1cf0395683
This commit is contained in:
commit
164027f824
1 changed files with 2 additions and 1 deletions
|
@ -35,7 +35,8 @@ enum class NetPermissionFlags : uint32_t {
|
|||
// unlimited amounts of addrs.
|
||||
Addr = (1U << 7),
|
||||
|
||||
// True if the user did not specifically set fine grained permissions
|
||||
// True if the user did not specifically set fine-grained permissions with
|
||||
// the -whitebind or -whitelist configuration options.
|
||||
Implicit = (1U << 31),
|
||||
All = BloomFilter | ForceRelay | Relay | NoBan | Mempool | Download | Addr,
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue