EZOpenSDK  4.8.6
 全部  函数 属性
EZHiddnsDeviceInfo.h
1 //
2 // EZHiddnsDeviceInfo.h
3 // EzvizOpenSDK
4 //
5 // Created by linyong on 2017/9/9.
6 // Copyright © 2017年 Ezviz. 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
映射模式,1-手动,0-自动
Definition: EZHiddnsDeviceInfo.h:29
NSString * deviceIp
设备外网地址
Definition: EZHiddnsDeviceInfo.h:17
NSInteger hiddnsHttpPort
映射http端口
Definition: EZHiddnsDeviceInfo.h:35
Definition: EZHiddnsDeviceInfo.h:11
NSString * domain
设备域名
Definition: EZHiddnsDeviceInfo.h:14
NSInteger hiddnsHttpsPort
映射https端口
Definition: EZHiddnsDeviceInfo.h:38
NSInteger hiddnsRtspPort
映射取流端口
Definition: EZHiddnsDeviceInfo.h:47
NSString * serial
设备长序列号
Definition: EZHiddnsDeviceInfo.h:23
NSInteger mappingHiddnsCmdPort
手动映射服务端口,upnpMappingMode=1时使用
Definition: EZHiddnsDeviceInfo.h:41
NSInteger mappingHiddnsHttpPort
手动映射http端口,upnpMappingMode=1时使用
Definition: EZHiddnsDeviceInfo.h:32
NSInteger hiddnsCmdPort
映射服务端口
Definition: EZHiddnsDeviceInfo.h:44
NSString * subSerial
设备短序列号
Definition: EZHiddnsDeviceInfo.h:20
NSString * deviceName
设备名称
Definition: EZHiddnsDeviceInfo.h:26