Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Sources/NTPClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ final class NTPClient {
private var pool: [String] = [] {
didSet { invalidate() }
}
var isStarted: Bool { return self.reachability.callback != nil }
}

private extension NTPClient {
Expand Down
1 change: 1 addition & 0 deletions Sources/TrueTime.swift
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public typealias LogCallback = (String) -> Void
@objc public var maxConnections: Int { return config.maxConnections }
@objc public var maxServers: Int { return config.maxServers}
@objc public var numberOfSamples: Int { return config.numberOfSamples}
@objc public var isStarted: Bool { return ntp.isStarted }

private let config: NTPConfig
private let ntp: NTPClient
Expand Down