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.
29 lines
988 B
Swift
29 lines
988 B
Swift
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
import SignalServiceKit
|
|
|
|
class SAECallMessageHandler: NSObject, OWSCallMessageHandler {
|
|
|
|
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).")
|
|
}
|
|
}
|