mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
ccb4a88742
git remote add ssk ../SignalServiceKit git remote update git merge -s ours --allow-unrelated-histories --no-commit ssk/master git read-tree --prefix=SignalServiceKit -u ssk/master git commit
24 lines
516 B
Objective-C
24 lines
516 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSOutgoingCallMessage.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class OWSSignalServiceProtosCallMessageHangup;
|
|
|
|
/**
|
|
* Sent by either party in a call to indicate the user intentionally ended the call.
|
|
*/
|
|
@interface OWSCallHangupMessage : OWSOutgoingCallMessage
|
|
|
|
- (instancetype)initWithCallId:(UInt64)callId;
|
|
|
|
@property (nonatomic, readonly) UInt64 callId;
|
|
|
|
- (OWSSignalServiceProtosCallMessageHangup *)asProtobuf;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|