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
		
	
	
		
			932 B
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			30 lines
		
	
	
		
			932 B
		
	
	
	
		
			Swift
		
	
| //
 | |
| //  Copyright (c) 2018 Open Whisper Systems. All rights reserved.
 | |
| //
 | |
| 
 | |
| import SignalServiceKit
 | |
| 
 | |
| @objc
 | |
| public class NoopCallMessageHandler: NSObject, OWSCallMessageHandler {
 | |
| 
 | |
|     public func receivedOffer(_ offer: SSKProtoCallMessageOffer, from callerId: String) {
 | |
|         owsFail("\(self.logTag) in \(#function).")
 | |
|     }
 | |
| 
 | |
|     public func receivedAnswer(_ answer: SSKProtoCallMessageAnswer, from callerId: String) {
 | |
|         owsFail("\(self.logTag) in \(#function).")
 | |
|     }
 | |
| 
 | |
|     public func receivedIceUpdate(_ iceUpdate: SSKProtoCallMessageIceUpdate, from callerId: String) {
 | |
|         owsFail("\(self.logTag) in \(#function).")
 | |
|     }
 | |
| 
 | |
|     public func receivedHangup(_ hangup: SSKProtoCallMessageHangup, from callerId: String) {
 | |
|         owsFail("\(self.logTag) in \(#function).")
 | |
|     }
 | |
| 
 | |
|     public func receivedBusy(_ busy: SSKProtoCallMessageBusy, from callerId: String) {
 | |
|         owsFail("\(self.logTag) in \(#function).")
 | |
|     }
 | |
| }
 |