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
35 lines
668 B
Objective-C
35 lines
668 B
Objective-C
// Created by Michael Kirk on 12/8/16.
|
|
// Copyright © 2016 Open Whisper Systems. All rights reserved.
|
|
|
|
#import "OWSCallHangupMessage.h"
|
|
#import "OWSSignalServiceProtos.pb.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@implementation OWSCallHangupMessage
|
|
|
|
- (instancetype)initWithCallId:(UInt64)callId
|
|
{
|
|
self = [super init];
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
_callId = callId;
|
|
|
|
return self;
|
|
}
|
|
|
|
- (OWSSignalServiceProtosCallMessageHangup *)asProtobuf
|
|
{
|
|
OWSSignalServiceProtosCallMessageHangupBuilder *builder = [OWSSignalServiceProtosCallMessageHangupBuilder new];
|
|
|
|
builder.id = self.callId;
|
|
|
|
return [builder build];
|
|
}
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|