@@ -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 */
6968extern 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 */
7573extern 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 */
8178extern 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 */
8783extern 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 */
9287extern 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 */
9993extern 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 */
10598extern 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 */
112104extern const char * GETHEADERS;
113105/* *
114106 * The tx message transmits a single transaction.
115- * @see https://bitcoin.org/en/developer-reference#tx
116107 */
117108extern 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 */
124114extern const char * HEADERS;
125115/* *
126116 * The block message transmits a single serialized block.
127- * @see https://bitcoin.org/en/developer-reference#block
128117 */
129118extern 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 */
135123extern 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 */
142129extern 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 */
148134extern 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 */
155140extern 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 */
162146extern 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 */
171154extern 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 */
180162extern 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 */
189170extern 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 */
196176extern const char * SENDHEADERS;
197177/* *
0 commit comments