mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1002 B
Swift
30 lines
1002 B
Swift
7 years ago
|
//
|
||
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import SignalServiceKit
|
||
|
|
||
7 years ago
|
@objc
|
||
7 years ago
|
public class NoopCallMessageHandler: NSObject, OWSCallMessageHandler {
|
||
7 years ago
|
|
||
|
public func receivedOffer(_ offer: OWSSignalServiceProtosCallMessageOffer, from callerId: String) {
|
||
|
owsFail("\(self.logTag) in \(#function).")
|
||
|
}
|
||
|
|
||
|
public func receivedAnswer(_ answer: OWSSignalServiceProtosCallMessageAnswer, from callerId: String) {
|
||
|
owsFail("\(self.logTag) in \(#function).")
|
||
|
}
|
||
|
|
||
|
public func receivedIceUpdate(_ iceUpdate: OWSSignalServiceProtosCallMessageIceUpdate, from callerId: String) {
|
||
|
owsFail("\(self.logTag) in \(#function).")
|
||
|
}
|
||
|
|
||
|
public func receivedHangup(_ hangup: OWSSignalServiceProtosCallMessageHangup, from callerId: String) {
|
||
|
owsFail("\(self.logTag) in \(#function).")
|
||
|
}
|
||
|
|
||
|
public func receivedBusy(_ busy: OWSSignalServiceProtosCallMessageBusy, from callerId: String) {
|
||
|
owsFail("\(self.logTag) in \(#function).")
|
||
|
}
|
||
|
}
|