summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuhas Daftuar <sdaftuar@gmail.com>2015-10-16 13:12:14 -0400
committerSuhas Daftuar <sdaftuar@gmail.com>2015-10-23 14:36:42 -0400
commit24fdae2a871a3e56b866aeab7634785b1fffd8c5 (patch)
tree4d6a2e5f51475e6ec53e2bf5d6ea2e65d154088a
parent914702e39c468c6e93cf851662c6ce02b905fbb1 (diff)
downloadbips-24fdae2a871a3e56b866aeab7634785b1fffd8c5.tar.xz
New BIP for "sendheaders" p2p message
-rw-r--r--bip-sendheaders.mediawiki43
1 files changed, 43 insertions, 0 deletions
diff --git a/bip-sendheaders.mediawiki b/bip-sendheaders.mediawiki
new file mode 100644
index 0000000..df96f80
--- /dev/null
+++ b/bip-sendheaders.mediawiki
@@ -0,0 +1,43 @@
+<pre>
+ BIP: <unassigned>
+ Title: sendheaders message
+ Author: Suhas Daftuar <sdaftuar@chaincode.com>
+ Status: Draft
+ Type: Standards Track
+ Created: 2015-05-08
+</pre>
+
+==Abstract==
+
+Add a new message, "sendheaders", which indicates that a node prefers to receive new block announcements via a "headers" message rather than an "inv".
+
+==Motivation==
+
+Since the introduction of "headers-first" downloading of blocks in 0.10, blocks will not be processed unless
+they are able to connect to a (valid) headers chain. Consequently, block relay generally works
+as follows:
+# A node (N) announces the new tip with an "inv" message, containing the block hash
+# A peer (P) responds to the "inv" with a "getheaders" message (to request headers up to the new tip) and a "getdata" message for the new tip itself
+# N responds with a "headers" message (with the header for the new block along with any preceding headers unknown to P) and a "block" message containing the new block
+
+However, in the case where a new block is being announced that builds on the tip, it would be generally more efficient if the node N just announced the block header for the new block, rather than just the block hash, and saved the peer from generating and transmitting the getheaders message (and the required block locator).
+
+In the case of a reorg, where 1 or more blocks are disconnected, nodes currently just send an "inv" for the new tip. Peers currently are able to request the new tip immediately, but wait until the headers for the intermediate blocks are delivered before requesting those blocks. By announcing headers from the last fork point leading up to the new tip in the block announcement, peers are able to request all the intermediate blocks immediately.
+
+==Specification==
+
+# The sendheaders message is defined as an empty message where pchCommand == "sendheaders"
+# Upon receipt of a "sendheaders" message, the node will be permitted, but not required, to announce new blocks by sending the header of the new block (along with any other blocks that a node believes a peer might need in order for the block to connect).
+# Feature discovery is enabled by checking protocol version >= 70012
+
+==Backward compatibility==
+
+Older clients remain fully compatible and interoperable after this change.
+
+==Implementation==
+
+https://github.com/bitcoin/bitcoin/pull/6494
+
+==Copyright==
+
+This document is placed in the public domain.