EZOpenSDK  v4.7.1
 All Classes Functions Properties
EZHiddnsDeviceInfo.h
1 //
2 // EZHiddnsDeviceInfo.h
3 // EzvizOpenSDK
4 //
5 // Created by linyong on 2017/9/9.
6 // Copyright © 2017Ezviz.. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @interface EZHiddnsDeviceInfo : NSObject
12 
14 @property (nonatomic,copy) NSString *domain;
15 
17 @property (nonatomic,copy) NSString *deviceIp;
18 
20 @property (nonatomic,copy) NSString *subSerial;
21 
23 @property (nonatomic,copy) NSString *serial;
24 
26 @property (nonatomic,copy) NSString *deviceName;
27 
29 @property (nonatomic,assign) NSInteger upnpMappingMode;
30 
32 @property (nonatomic,assign) NSInteger mappingHiddnsHttpPort;
33 
35 @property (nonatomic,assign) NSInteger hiddnsHttpPort;
36 
38 @property (nonatomic,assign) NSInteger hiddnsHttpsPort;
39 
41 @property (nonatomic,assign) NSInteger mappingHiddnsCmdPort;
42 
44 @property (nonatomic,assign) NSInteger hiddnsCmdPort;
45 
47 @property (nonatomic,assign) NSInteger hiddnsRtspPort;
48 
50 //@property (nonatomic,copy) NSString *localIp;
51 //
53 //@property (nonatomic,assign) NSInteger localHiddnsHttpPort;
54 //
56 //@property (nonatomic,assign) NSInteger localHiddnsHttpsPort;
57 //
59 //@property (nonatomic,assign) NSInteger localHiddnsCmdPort;
60 //
62 //@property (nonatomic,assign) NSInteger localHiddnsRtspPort;
63 //
65 //@property (nonatomic,assign) NSInteger cmdPort;
66 //
68 //@property (nonatomic,assign) NSInteger httpPort;
69 //
71 //@property (nonatomic,assign) NSInteger streamPort;
72 //
74 //@property (nonatomic,assign) NSInteger localCmdPort;
75 //
77 //@property (nonatomic,assign) NSInteger localHttpPort;
78 //
80 //@property (nonatomic,assign) NSInteger localStreamPort;
81 
82 
83 @end
84 
NSInteger upnpMappingMode
Mapping mode: 1- Manual, 0- Automatic.
Definition: EZHiddnsDeviceInfo.h:29
NSString * deviceIp
Device IP address.
Definition: EZHiddnsDeviceInfo.h:17
NSInteger hiddnsHttpPort
HTTP port mapping.
Definition: EZHiddnsDeviceInfo.h:35
Definition: EZHiddnsDeviceInfo.h:11
NSString * domain
Device domain name.
Definition: EZHiddnsDeviceInfo.h:14
NSInteger hiddnsHttpsPort
HTTP port mapping.
Definition: EZHiddnsDeviceInfo.h:38
NSInteger hiddnsRtspPort
Mapping streaming port.
Definition: EZHiddnsDeviceInfo.h:47
NSString * serial
Device full serial No.
Definition: EZHiddnsDeviceInfo.h:23
NSInteger mappingHiddnsCmdPort
Port manual mapping, used when upnpMappingMode=1.
Definition: EZHiddnsDeviceInfo.h:41
NSInteger mappingHiddnsHttpPort
HTTP port manual mapping, used when upnpMappingMode=1.
Definition: EZHiddnsDeviceInfo.h:32
NSInteger hiddnsCmdPort
Mapping service port.
Definition: EZHiddnsDeviceInfo.h:44
NSString * subSerial
Device sub serial No.
Definition: EZHiddnsDeviceInfo.h:20
NSString * deviceName
Device name.
Definition: EZHiddnsDeviceInfo.h:26