Skip to content

Commit a787428

Browse files
author
MarcoFalke
committed
Merge #19639: doc: Remove Reference Links #19582
334de75 scripted-diff: Remove Reference Links (Robert) Pull request description: Removed all reference links. Found this issue from #19582. The decision to remove links instead of update them was made in #19584 The author of that PR was slow to resolve his commit to use scripted diff so I made this PR instead. ACKs for top commit: laanwj: ACK 334de75 MarcoFalke: ACK 334de75 Tree-SHA512: a337116379912b27974867bd86ec7799a1d41d67b51771885467fbe1be003b415cb37ce8e521568bf3eae190ab2f6af0d6e29fd3ea25f2689b8fb31def8fec96
2 parents 8443fb1 + 334de75 commit a787428

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

src/protocol.h

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -64,100 +64,84 @@ namespace NetMsgType {
6464
/**
6565
* The version message provides information about the transmitting node to the
6666
* receiving node at the beginning of a connection.
67-
* @see https://bitcoin.org/en/developer-reference#version
6867
*/
6968
extern const char* VERSION;
7069
/**
7170
* The verack message acknowledges a previously-received version message,
7271
* informing the connecting node that it can begin to send other messages.
73-
* @see https://bitcoin.org/en/developer-reference#verack
7472
*/
7573
extern const char* VERACK;
7674
/**
7775
* The addr (IP address) message relays connection information for peers on the
7876
* network.
79-
* @see https://bitcoin.org/en/developer-reference#addr
8077
*/
8178
extern const char* ADDR;
8279
/**
8380
* The inv message (inventory message) transmits one or more inventories of
8481
* objects known to the transmitting peer.
85-
* @see https://bitcoin.org/en/developer-reference#inv
8682
*/
8783
extern const char* INV;
8884
/**
8985
* The getdata message requests one or more data objects from another node.
90-
* @see https://bitcoin.org/en/developer-reference#getdata
9186
*/
9287
extern const char* GETDATA;
9388
/**
9489
* The merkleblock message is a reply to a getdata message which requested a
9590
* block using the inventory type MSG_MERKLEBLOCK.
9691
* @since protocol version 70001 as described by BIP37.
97-
* @see https://bitcoin.org/en/developer-reference#merkleblock
9892
*/
9993
extern const char* MERKLEBLOCK;
10094
/**
10195
* The getblocks message requests an inv message that provides block header
10296
* hashes starting from a particular point in the block chain.
103-
* @see https://bitcoin.org/en/developer-reference#getblocks
10497
*/
10598
extern const char* GETBLOCKS;
10699
/**
107100
* The getheaders message requests a headers message that provides block
108101
* headers starting from a particular point in the block chain.
109102
* @since protocol version 31800.
110-
* @see https://bitcoin.org/en/developer-reference#getheaders
111103
*/
112104
extern const char* GETHEADERS;
113105
/**
114106
* The tx message transmits a single transaction.
115-
* @see https://bitcoin.org/en/developer-reference#tx
116107
*/
117108
extern const char* TX;
118109
/**
119110
* The headers message sends one or more block headers to a node which
120111
* previously requested certain headers with a getheaders message.
121112
* @since protocol version 31800.
122-
* @see https://bitcoin.org/en/developer-reference#headers
123113
*/
124114
extern const char* HEADERS;
125115
/**
126116
* The block message transmits a single serialized block.
127-
* @see https://bitcoin.org/en/developer-reference#block
128117
*/
129118
extern const char* BLOCK;
130119
/**
131120
* The getaddr message requests an addr message from the receiving node,
132121
* preferably one with lots of IP addresses of other receiving nodes.
133-
* @see https://bitcoin.org/en/developer-reference#getaddr
134122
*/
135123
extern const char* GETADDR;
136124
/**
137125
* The mempool message requests the TXIDs of transactions that the receiving
138126
* node has verified as valid but which have not yet appeared in a block.
139127
* @since protocol version 60002.
140-
* @see https://bitcoin.org/en/developer-reference#mempool
141128
*/
142129
extern const char* MEMPOOL;
143130
/**
144131
* The ping message is sent periodically to help confirm that the receiving
145132
* peer is still connected.
146-
* @see https://bitcoin.org/en/developer-reference#ping
147133
*/
148134
extern const char* PING;
149135
/**
150136
* The pong message replies to a ping message, proving to the pinging node that
151137
* the ponging node is still alive.
152138
* @since protocol version 60001 as described by BIP31.
153-
* @see https://bitcoin.org/en/developer-reference#pong
154139
*/
155140
extern const char* PONG;
156141
/**
157142
* The notfound message is a reply to a getdata message which requested an
158143
* object the receiving node does not have available for relay.
159144
* @since protocol version 70001.
160-
* @see https://bitcoin.org/en/developer-reference#notfound
161145
*/
162146
extern const char* NOTFOUND;
163147
/**
@@ -166,7 +150,6 @@ extern const char* NOTFOUND;
166150
* @since protocol version 70001 as described by BIP37.
167151
* Only available with service bit NODE_BLOOM since protocol version
168152
* 70011 as described by BIP111.
169-
* @see https://bitcoin.org/en/developer-reference#filterload
170153
*/
171154
extern const char* FILTERLOAD;
172155
/**
@@ -175,7 +158,6 @@ extern const char* FILTERLOAD;
175158
* @since protocol version 70001 as described by BIP37.
176159
* Only available with service bit NODE_BLOOM since protocol version
177160
* 70011 as described by BIP111.
178-
* @see https://bitcoin.org/en/developer-reference#filteradd
179161
*/
180162
extern const char* FILTERADD;
181163
/**
@@ -184,14 +166,12 @@ extern const char* FILTERADD;
184166
* @since protocol version 70001 as described by BIP37.
185167
* Only available with service bit NODE_BLOOM since protocol version
186168
* 70011 as described by BIP111.
187-
* @see https://bitcoin.org/en/developer-reference#filterclear
188169
*/
189170
extern const char* FILTERCLEAR;
190171
/**
191172
* Indicates that a node prefers to receive new block announcements via a
192173
* "headers" message rather than an "inv".
193174
* @since protocol version 70012 as described by BIP130.
194-
* @see https://bitcoin.org/en/developer-reference#sendheaders
195175
*/
196176
extern const char* SENDHEADERS;
197177
/**

0 commit comments

Comments
 (0)