delegated_provisioning_constants/constants.rs
1// Copyright 2023 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//! Constants required by both `bootstrap_dhcp.rs` and `test.rs`.
6
7use fidl_fuchsia_net as fnet;
8use net_declare::fidl_ip_v4;
9
10pub const SERVER_STATIC_IP: fnet::Ipv4Address = fidl_ip_v4!("192.0.168.1");
11pub const DHCP_DYNAMIC_IP: fnet::Ipv4Address = fidl_ip_v4!("192.0.168.2");
12
13pub const CLIENT_IFACE_NAME: &'static str = "starnixethx1";
14pub const SERVER_IFACE_NAME: &'static str = "server-ep";