Implemented SetTunnelStatus intent

Signed-off-by: Alessio Nossa <alessio.nossa@gmail.com>
This commit is contained in:
Alessio Nossa
2022-02-01 13:28:33 +01:00
parent fe3f2d089b
commit bb6ea1b2f3
4 changed files with 487 additions and 2 deletions
@@ -11,7 +11,9 @@ class IntentHandler: INExtension {
}
override func handler(for intent: INIntent) -> Any {
guard intent is GetPeersIntent || intent is UpdateConfigurationIntent else {
guard intent is GetPeersIntent ||
intent is UpdateConfigurationIntent ||
intent is SetTunnelStatusIntent else {
fatalError("Unhandled intent type: \(intent)")
}