@@ -60,19 +60,16 @@ namespace NetMsgType {
6060/* *
6161 * The version message provides information about the transmitting node to the
6262 * receiving node at the beginning of a connection.
63- * @see https://bitcoin.org/en/developer-reference#version
6463 */
6564extern const char *VERSION;
6665/* *
6766 * The verack message acknowledges a previously-received version message,
6867 * informing the connecting node that it can begin to send other messages.
69- * @see https://bitcoin.org/en/developer-reference#verack
7068 */
7169extern const char *VERACK;
7270/* *
7371 * The addr (IP address) message relays connection information for peers on the
7472 * network.
75- * @see https://bitcoin.org/en/developer-reference#addr
7673 */
7774extern const char *ADDR;
7875/* *
@@ -90,82 +87,69 @@ extern const char *SENDADDRV2;
9087/* *
9188 * The inv message (inventory message) transmits one or more inventories of
9289 * objects known to the transmitting peer.
93- * @see https://bitcoin.org/en/developer-reference#inv
9490 */
9591extern const char *INV;
9692/* *
9793 * The getdata message requests one or more data objects from another node.
98- * @see https://bitcoin.org/en/developer-reference#getdata
9994 */
10095extern const char *GETDATA;
10196/* *
10297 * The merkleblock message is a reply to a getdata message which requested a
10398 * block using the inventory type MSG_MERKLEBLOCK.
10499 * @since protocol version 70001 as described by BIP37.
105- * @see https://bitcoin.org/en/developer-reference#merkleblock
106100 */
107101extern const char *MERKLEBLOCK;
108102/* *
109103 * The getblocks message requests an inv message that provides block header
110104 * hashes starting from a particular point in the block chain.
111- * @see https://bitcoin.org/en/developer-reference#getblocks
112105 */
113106extern const char *GETBLOCKS;
114107/* *
115108 * The getheaders message requests a headers message that provides block
116109 * headers starting from a particular point in the block chain.
117110 * @since protocol version 31800.
118- * @see https://bitcoin.org/en/developer-reference#getheaders
119111 */
120112extern const char *GETHEADERS;
121113/* *
122114 * The tx message transmits a single transaction.
123- * @see https://bitcoin.org/en/developer-reference#tx
124115 */
125116extern const char *TX;
126117/* *
127118 * The headers message sends one or more block headers to a node which
128119 * previously requested certain headers with a getheaders message.
129120 * @since protocol version 31800.
130- * @see https://bitcoin.org/en/developer-reference#headers
131121 */
132122extern const char *HEADERS;
133123/* *
134124 * The block message transmits a single serialized block.
135- * @see https://bitcoin.org/en/developer-reference#block
136125 */
137126extern const char *BLOCK;
138127/* *
139128 * The getaddr message requests an addr message from the receiving node,
140129 * preferably one with lots of IP addresses of other receiving nodes.
141- * @see https://bitcoin.org/en/developer-reference#getaddr
142130 */
143131extern const char *GETADDR;
144132/* *
145133 * The mempool message requests the TXIDs of transactions that the receiving
146134 * node has verified as valid but which have not yet appeared in a block.
147135 * @since protocol version 60002.
148- * @see https://bitcoin.org/en/developer-reference#mempool
149136 */
150137extern const char *MEMPOOL;
151138/* *
152139 * The ping message is sent periodically to help confirm that the receiving
153140 * peer is still connected.
154- * @see https://bitcoin.org/en/developer-reference#ping
155141 */
156142extern const char *PING;
157143/* *
158144 * The pong message replies to a ping message, proving to the pinging node that
159145 * the ponging node is still alive.
160146 * @since protocol version 60001 as described by BIP31.
161- * @see https://bitcoin.org/en/developer-reference#pong
162147 */
163148extern const char *PONG;
164149/* *
165150 * The notfound message is a reply to a getdata message which requested an
166151 * object the receiving node does not have available for relay.
167152 * @since protocol version 70001.
168- * @see https://bitcoin.org/en/developer-reference#notfound
169153 */
170154extern const char *NOTFOUND;
171155/* *
@@ -174,7 +158,6 @@ extern const char *NOTFOUND;
174158 * @since protocol version 70001 as described by BIP37.
175159 * Only available with service bit NODE_BLOOM since protocol version
176160 * 70011 as described by BIP111.
177- * @see https://bitcoin.org/en/developer-reference#filterload
178161 */
179162extern const char *FILTERLOAD;
180163/* *
@@ -183,7 +166,6 @@ extern const char *FILTERLOAD;
183166 * @since protocol version 70001 as described by BIP37.
184167 * Only available with service bit NODE_BLOOM since protocol version
185168 * 70011 as described by BIP111.
186- * @see https://bitcoin.org/en/developer-reference#filteradd
187169 */
188170extern const char *FILTERADD;
189171/* *
@@ -192,7 +174,6 @@ extern const char *FILTERADD;
192174 * @since protocol version 70001 as described by BIP37.
193175 * Only available with service bit NODE_BLOOM since protocol version
194176 * 70011 as described by BIP111.
195- * @see https://bitcoin.org/en/developer-reference#filterclear
196177 */
197178extern const char *FILTERCLEAR;
198179/* *
@@ -206,7 +187,6 @@ extern const char *REJECT;
206187 * Indicates that a node prefers to receive new block announcements via a
207188 * "headers" message rather than an "inv".
208189 * @since protocol version 70012 as described by BIP130.
209- * @see https://bitcoin.org/en/developer-reference#sendheaders
210190 */
211191extern const char *SENDHEADERS;
212192
0 commit comments