You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
622 B
25 lines
622 B
// |
|
// NodeStatus.h |
|
// ZeroTier One |
|
// |
|
// Created by Grant Limberg on 8/4/16. |
|
// Copyright © 2016 ZeroTier, Inc. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
@interface NodeStatus : NSObject |
|
|
|
@property (readonly) NSString *address; |
|
@property (readonly) NSString *publicIdentity; |
|
@property (readonly) BOOL online; |
|
@property (readonly) BOOL tcpFallbackActive; |
|
@property (readonly) int versionMajor; |
|
@property (readonly) int versionMinor; |
|
@property (readonly) int versionRev; |
|
@property (readonly) NSString *version; |
|
@property (readonly) UInt64 clock; |
|
|
|
- (id)initWithJsonData:(NSDictionary*)jsonData; |
|
|
|
@end
|
|
|