1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// ---------------- [ File: bitcoin-network/src/sizes.rs ]
crateix!;
/**
| Size of IPv4 address (in bytes).
|
*/
pub const ADDR_IPV4_SIZE: usize = 4;
/**
| Size of IPv6 address (in bytes).
|
*/
pub const ADDR_IPV6_SIZE: usize = 16;
/**
| Size of TORv3 address (in bytes). This
| is the length of just the address as used
| in BIP155, without the checksum and
| the version byte.
|
*/
pub const ADDR_TORV3_SIZE: usize = 32;
/**
| Size of I2P address (in bytes).
|
*/
pub const ADDR_I2P_SIZE: usize = 32;
/**
| Size of CJDNS address (in bytes).
|
*/
pub const ADDR_CJDNS_SIZE: usize = 16;
/**
| Size of "internal" (NET_INTERNAL)
| address (in bytes).
|
*/
pub const ADDR_INTERNAL_SIZE: usize = 10;