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.
31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
5 years ago
|
//
|
||
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@class SSKProtoCallMessageAnswer;
|
||
|
@class SSKProtoCallMessageBusy;
|
||
|
@class SSKProtoCallMessageHangup;
|
||
|
@class SSKProtoCallMessageIceUpdate;
|
||
|
@class SSKProtoCallMessageOffer;
|
||
|
|
||
|
@protocol OWSCallMessageHandler <NSObject>
|
||
|
|
||
|
- (void)receivedOffer:(SSKProtoCallMessageOffer *)offer
|
||
|
fromCallerId:(NSString *)callerId NS_SWIFT_NAME(receivedOffer(_:from:));
|
||
|
- (void)receivedAnswer:(SSKProtoCallMessageAnswer *)answer
|
||
|
fromCallerId:(NSString *)callerId NS_SWIFT_NAME(receivedAnswer(_:from:));
|
||
|
- (void)receivedIceUpdate:(SSKProtoCallMessageIceUpdate *)iceUpdate
|
||
|
fromCallerId:(NSString *)callerId NS_SWIFT_NAME(receivedIceUpdate(_:from:));
|
||
|
- (void)receivedHangup:(SSKProtoCallMessageHangup *)hangup
|
||
|
fromCallerId:(NSString *)callerId NS_SWIFT_NAME(receivedHangup(_:from:));
|
||
|
- (void)receivedBusy:(SSKProtoCallMessageBusy *)busy
|
||
|
fromCallerId:(NSString *)callerId NS_SWIFT_NAME(receivedBusy(_:from:));
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|