aboutsummaryrefslogtreecommitdiff
path: root/src/test/fuzz/process_messages.cpp
Commit message (Collapse)AuthorAgeFilesLines
* test: Mock IBD in net_processing fuzzersMarcoFalke2020-11-071-0/+6
|
* p2p: Unify Send and Receive protocol versionsHennadii Stepanov2020-09-071-1/+1
| | | | There is no change in behavior on the P2P network.
* scripted-diff: [net processing] Rename PeerLogicValidation to PeerManagerJohn Newbery2020-09-071-1/+1
| | | | | | | | | | | | | | | -BEGIN VERIFY SCRIPT- sed -i 's/PeerLogicValidation/PeerManager/g' $(git grep -l PeerLogicValidation ./src ./test) sed -i 's/peer_logic/peerman/g' $(git grep -l peer_logic ./src ./test) -END VERIFY SCRIPT- PeerLogicValidation was originally net_processing's implementation to the validation interface. It has since grown to contain much of net_processing's logic. Therefore rename it to reflect its responsibilities. Suggested in https://github.com/bitcoin/bitcoin/pull/10756#pullrequestreview-53892618.
* scripted-diff: Rename `OUTBOUND` ConnectionType to `OUTBOUND_FULL_RELAY`Amiti Uttarwar2020-09-021-1/+1
| | | | | | | -BEGIN VERIFY SCRIPT- sed -i 's/OUTBOUND, /OUTBOUND_FULL_RELAY, /g' src/net.h sed -i 's/ConnectionType::OUTBOUND/ConnectionType::OUTBOUND_FULL_RELAY/g' src/test/net_tests.cpp src/test/fuzz/process_message.cpp src/test/fuzz/process_messages.cpp src/net.cpp src/test/denialofservice_tests.cpp src/net.h src/test/fuzz/net.cpp -END VERIFY SCRIPT-
* [net/refactor] Add AddrFetch connections to ConnectionType enumAmiti Uttarwar2020-08-071-1/+1
| | | | | - AddrFetch connections are short lived connections used to getaddr from a peer - previously called "one shot" connections
* [net/refactor] Add block relay only connections to ConnectionType enumAmiti Uttarwar2020-08-071-3/+2
|
* [net/refactor] Add feeler connections to ConnectionType enumAmiti Uttarwar2020-08-071-1/+1
|
* [net/refactor] Add manual connections to ConnectionType enumAmiti Uttarwar2020-08-071-1/+1
|
* [net/refactor] Introduce an enum to distinguish type of connectionAmiti Uttarwar2020-08-071-2/+2
| | | | - extract inbound & outbound types
* Merge #18937: refactor: s/command/msg_type/ in CNetMsgMaker and ↵MarcoFalke2020-06-191-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CSerializedNetMsg 51e9393c1f6c9eaac554f821f5327f63bd09c8cf refactor: s/command/msg_type/ in CNetMsgMaker and CSerializedNetMsg (Sebastian Falbesoner) Pull request description: Follow-up PR for #18533 -- another small step towards getting rid of the confusing "command" terminology. Also see PR #18610 which tackled the functional tests. ACKs for top commit: MarcoFalke: ACK 51e9393c1f6c9eaac554f821f5327f63bd09c8cf Tree-SHA512: bb6f05a7be6823d5c4eab1d05b31fee944e700946827ad9425d59a3957fd879776c88c606319cbe9832d9451b275baedf913b71429ea3e01e4e82bf2d419e819
| * refactor: s/command/msg_type/ in CNetMsgMaker and CSerializedNetMsgSebastian Falbesoner2020-05-111-1/+1
| |
* | fuzz: Stop nodes in process_message* fuzzersMarcoFalke2020-05-121-1/+2
|/
* fuzz: Disable debug log fileMarcoFalke2020-04-151-2/+7
|
* fuzz: Add process_messages harnessMarcoFalke2020-04-051-0/+75