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.
43 lines
915 B
Matlab
43 lines
915 B
Matlab
7 years ago
|
//
|
||
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
9 years ago
|
|
||
|
#import "OWSFakeCallMessageHandler.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
7 years ago
|
#ifdef DEBUG
|
||
|
|
||
9 years ago
|
@implementation OWSFakeCallMessageHandler
|
||
|
|
||
7 years ago
|
- (void)receivedOffer:(SSKProtoCallMessageOffer *)offer fromCallerId:(NSString *)callerId
|
||
9 years ago
|
{
|
||
|
NSLog(@"%s", __PRETTY_FUNCTION__);
|
||
|
}
|
||
|
|
||
7 years ago
|
- (void)receivedAnswer:(SSKProtoCallMessageAnswer *)answer fromCallerId:(NSString *)callerId
|
||
9 years ago
|
{
|
||
|
NSLog(@"%s", __PRETTY_FUNCTION__);
|
||
|
}
|
||
|
|
||
7 years ago
|
- (void)receivedIceUpdate:(SSKProtoCallMessageIceUpdate *)iceUpdate fromCallerId:(NSString *)callerId
|
||
9 years ago
|
{
|
||
|
NSLog(@"%s", __PRETTY_FUNCTION__);
|
||
|
}
|
||
|
|
||
7 years ago
|
- (void)receivedHangup:(SSKProtoCallMessageHangup *)hangup fromCallerId:(NSString *)callerId
|
||
9 years ago
|
{
|
||
|
NSLog(@"%s", __PRETTY_FUNCTION__);
|
||
|
}
|
||
|
|
||
7 years ago
|
- (void)receivedBusy:(SSKProtoCallMessageBusy *)busy fromCallerId:(NSString *)callerId
|
||
9 years ago
|
{
|
||
|
NSLog(@"%s", __PRETTY_FUNCTION__);
|
||
|
}
|
||
|
|
||
|
@end
|
||
|
|
||
7 years ago
|
#endif
|
||
|
|
||
9 years ago
|
NS_ASSUME_NONNULL_END
|