wiki commit

This commit is contained in:
bitcoin
2019-12-05 14:32:12 -05:00
committed by buwiki
parent 78db71ed16
commit 2eeafa3a9d
2 changed files with 528 additions and 8 deletions
+520
View File
@@ -1,5 +1,525 @@
# Endianness
f
fwe
f
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
## Little
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
## Big
fewfewf
f
wef
e
wf
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
fewfewf
f
wef
e
wf
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
ewf
fe
f
ef
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
f
ff
+8 -8
View File
@@ -8,14 +8,14 @@ The node connection is not considered established until both nodes have sent and
| Field | Length | Format | Description |
|--|--|--|--|
| version | 4 bytes | unsigned integer (LE) | The version number supported by the sending node. |
| services | 8 bytes | bitmask<sup>[(LE)](/protocol/misc/endian#little)</sup> | An indication of the services supported by the sending node. See Services Bitmask section below. |
| timestamp | 8 bytes | unix timestamp (LE) | The time the message was generated on the sending node. |
| remote address | 26 bytes | network address | The network address of the remote node. <p>_NOTE: this does not contain the timestamp normally included with network addresses._</p> |
| local address | 26 bytes | network address | The network address of the sending node. <p>_NOTE: this does not contain the timestamp normally included with network addresses._</p> |
| nonce | 8 bytes | bytes (LE) | Random nonce for the connection, used to detect connections to self. |
| user agent | variable | user agent string | A user agent string identifying the node implementation. |
| block height | 4 bytes | unsigned integer (LE) | The height of the block with the highest height known to the sending node. |
| version | 4 bytes | unsigned integer<sup>[(LE)](/protocol/misc/endian/little)</sup> | The version number supported by the sending node. |
| services | 8 bytes | bitmask<sup>[(LE)](/protocol/misc/endian/little)</sup> | An indication of the services supported by the sending node. See Services Bitmask section below. |
| timestamp | 8 bytes | unix timestamp<sup>[(LE)](/protocol/misc/endian/little)</sup> | The time the message was generated on the sending node. |
| remote address | 26 bytes | [network address](/protocol/formats/network-address) | The network address of the remote node. <p>_NOTE: this does not contain the timestamp normally included with network addresses._</p> |
| local address | 26 bytes | [network address](/protocol/formats/network-address) | The network address of the sending node. <p>_NOTE: this does not contain the timestamp normally included with network addresses._</p> |
| nonce | 8 bytes | bytes<sup>[(LE)](/protocol/misc/endian/little)</sup> | Random nonce for the connection, used to detect connections to self. |
| user agent | variable | [variable length string](/protocol/formats/variable-length-string) | A user agent string identifying the node implementation. |
| block height | 4 bytes | unsigned integer<sup>[(LE)](/protocol/misc/endian/little)</sup> | The height of the block with the highest height known to the sending node. |
| relay flag | 1 byte | boolean | Indicates whether the sending node would like all broadcasted transactions relayed to it. See [BIP-37](https://github.com/bitcoin/bips/blob/master/bip-0037.mediawiki). |
## Services Bitmask