Fix hidden IPv4Settings fields
This commit is contained in:
parent
7608ae2e3c
commit
dcac7cb2d4
|
@ -55,16 +55,16 @@ public struct IPv4Settings: Codable, CustomStringConvertible {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The address.
|
/// The address.
|
||||||
let address: String
|
public let address: String
|
||||||
|
|
||||||
/// The address mask.
|
/// The address mask.
|
||||||
let addressMask: String
|
public let addressMask: String
|
||||||
|
|
||||||
/// The address of the default gateway.
|
/// The address of the default gateway.
|
||||||
let defaultGateway: String
|
public let defaultGateway: String
|
||||||
|
|
||||||
/// The additional routes.
|
/// The additional routes.
|
||||||
let routes: [Route]
|
public let routes: [Route]
|
||||||
|
|
||||||
// MARK: CustomStringConvertible
|
// MARK: CustomStringConvertible
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue