Files
wehub-resource-sync 680845cb1c
Build containerization / Verify commit signatures (push) Has been skipped
Build containerization / containerization (push) Successful in 0s
Linux build / Linux compile check (push) Has been cancelled
Linux build / Determine Swift version (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:25:30 +08:00

58 lines
2.1 KiB
Swift

//===----------------------------------------------------------------------===//
// Copyright © 2026 Apple Inc. and the Containerization project authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//===----------------------------------------------------------------------===//
/// A network interface's addresses.
public struct InterfaceAddress: Sendable, Hashable {
public var ipv4Address: CIDRv4
public var ipv6Address: CIDRv6?
public init(ipv4Address: CIDRv4, ipv6Address: CIDRv6? = nil) {
self.ipv4Address = ipv4Address
self.ipv6Address = ipv6Address
}
}
/// A link-scoped route — a destination directly reachable on an interface.
public struct LinkRoute: Sendable, Hashable {
public var ipv4Destination: IPv4Address?
public var ipv4Source: IPv4Address?
public var ipv6Destination: IPv6Address?
public var ipv6Source: IPv6Address?
public init(
ipv4Destination: IPv4Address? = nil,
ipv4Source: IPv4Address? = nil,
ipv6Destination: IPv6Address? = nil,
ipv6Source: IPv6Address? = nil
) {
self.ipv4Destination = ipv4Destination
self.ipv4Source = ipv4Source
self.ipv6Destination = ipv6Destination
self.ipv6Source = ipv6Source
}
}
/// The default-route gateway for a network interface.
public struct DefaultRoute: Sendable, Hashable {
public var ipv4Gateway: IPv4Address?
public var ipv6Gateway: IPv6Address?
public init(ipv4Gateway: IPv4Address? = nil, ipv6Gateway: IPv6Address? = nil) {
self.ipv4Gateway = ipv4Gateway
self.ipv6Gateway = ipv6Gateway
}
}