2018-09-09 09:40:58 +00:00
|
|
|
//
|
|
|
|
// ControlPacket.h
|
|
|
|
// TunnelKit
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 9/14/18.
|
2019-03-09 10:44:18 +00:00
|
|
|
// Copyright (c) 2019 Davide De Rosa. All rights reserved.
|
2018-09-09 09:40:58 +00:00
|
|
|
//
|
|
|
|
// https://github.com/keeshux
|
|
|
|
//
|
|
|
|
// This file is part of TunnelKit.
|
|
|
|
//
|
|
|
|
// TunnelKit is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// TunnelKit is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with TunnelKit. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
#import "PacketMacros.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2018-09-19 20:15:16 +00:00
|
|
|
@protocol Encrypter;
|
|
|
|
|
2018-09-09 09:40:58 +00:00
|
|
|
@interface ControlPacket : NSObject
|
|
|
|
|
|
|
|
- (instancetype)initWithCode:(PacketCode)code
|
|
|
|
key:(uint8_t)key
|
|
|
|
sessionId:(NSData *)sessionId
|
|
|
|
packetId:(uint32_t)packetId
|
|
|
|
payload:(nullable NSData *)payload;
|
|
|
|
|
|
|
|
- (instancetype)initWithKey:(uint8_t)key
|
|
|
|
sessionId:(NSData *)sessionId
|
|
|
|
ackIds:(NSArray<NSNumber *> *)ackIds
|
|
|
|
ackRemoteSessionId:(NSData *)ackRemoteSessionId;
|
|
|
|
|
|
|
|
@property (nonatomic, assign, readonly) PacketCode code;
|
|
|
|
@property (nonatomic, readonly) BOOL isAck;
|
|
|
|
@property (nonatomic, assign, readonly) uint8_t key;
|
|
|
|
@property (nonatomic, strong, readonly) NSData *sessionId;
|
|
|
|
@property (nonatomic, strong) NSArray<NSNumber *> *_Nullable ackIds; // uint32_t
|
|
|
|
@property (nonatomic, strong) NSData *_Nullable ackRemoteSessionId;
|
|
|
|
@property (nonatomic, assign, readonly) uint32_t packetId;
|
|
|
|
@property (nonatomic, strong, readonly) NSData *_Nullable payload;
|
|
|
|
@property (nonatomic, strong) NSDate *_Nullable sentDate;
|
|
|
|
|
2018-09-20 09:05:08 +00:00
|
|
|
//- (NSInteger)capacity;
|
|
|
|
//- (NSInteger)serializeTo:(uint8_t *)to;
|
2018-09-09 09:40:58 +00:00
|
|
|
- (NSData *)serialized;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2018-09-19 20:15:16 +00:00
|
|
|
@interface ControlPacket (Authentication)
|
|
|
|
|
|
|
|
- (nullable NSData *)serializedWithAuthenticator:(id<Encrypter>)auth replayId:(uint32_t)replayId timestamp:(uint32_t)timestamp error:(NSError * _Nullable __autoreleasing *)error;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2018-10-19 14:52:37 +00:00
|
|
|
@interface ControlPacket (Encryption)
|
|
|
|
|
|
|
|
- (nullable NSData *)serializedWithEncrypter:(id<Encrypter>)encrypter replayId:(uint32_t)replayId timestamp:(uint32_t)timestamp adLength:(NSInteger)adLength error:(NSError * _Nullable __autoreleasing *)error;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2018-09-09 09:40:58 +00:00
|
|
|
NS_ASSUME_NONNULL_END
|