netstack_testing_common/
constants.rs

1// Copyright 2019 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! Useful constants for tests.
6
7/// IPv4 constants.
8pub mod ipv4 {
9    /// A default IPv4 time-to-live value.
10    pub const DEFAULT_TTL: u8 = 64;
11}
12
13/// IPv6 constants.
14pub mod ipv6 {
15    use net_declare::{net_ip_v6, net_subnet_v6};
16    use net_types::ip as net_types_ip;
17
18    /// A default IPv6 hop limit value.
19    pub const DEFAULT_HOP_LIMIT: u8 = 64;
20
21    /// A globally-routable IPv6 prefix.
22    pub const GLOBAL_PREFIX: net_types_ip::Subnet<net_types_ip::Ipv6Addr> =
23        net_subnet_v6!("2001:f1f0:4060:1::/64");
24
25    /// An IPv6 address in `GLOBAL_PREFIX`.
26    pub const GLOBAL_ADDR: net_types_ip::Ipv6Addr = net_ip_v6!("2001:f1f0:4060:1::1");
27
28    /// A link-local IPv6 address.
29    ///
30    /// fe80::1
31    pub const LINK_LOCAL_ADDR: net_types_ip::Ipv6Addr = net_ip_v6!("fe80::1");
32
33    /// The prefix length for the link-local subnet.
34    pub const LINK_LOCAL_SUBNET_PREFIX: u8 = 64;
35}
36
37/// Ethernet constants.
38pub mod eth {
39    use net_declare::net_mac;
40    use net_types::ethernet::Mac;
41
42    /// A MAC address.
43    ///
44    /// 02:00:00:00:00:01
45    pub const MAC_ADDR: Mac = net_mac!("02:00:00:00:00:01");
46
47    /// Another MAC address.
48    pub const MAC_ADDR2: Mac = net_mac!("02:FF:FF:FF:FF:FF");
49}