Model: listenPort and persistentKeepAlive should be 16-bit integers

Signed-off-by: Roopesh Chander <roop@roopc.net>
This commit is contained in:
Roopesh Chander
2018-10-23 15:51:19 +05:30
parent 607dd4bf3d
commit b2f2756d9c
2 changed files with 6 additions and 6 deletions
@@ -22,7 +22,7 @@ struct InterfaceConfiguration: Codable {
var name: String
var privateKey: Data
var addresses: [IPAddressRange] = []
var listenPort: UInt64? = nil
var listenPort: UInt16? = nil
var mtu: UInt64? = nil
var dns: String? = nil
@@ -46,7 +46,7 @@ struct PeerConfiguration: Codable {
}
var allowedIPs: [IPAddressRange] = []
var endpoint: Endpoint?
var persistentKeepAlive: UInt64?
var persistentKeepAlive: UInt16?
init(publicKey: Data) {
self.publicKey = publicKey