JLChen
2021-05-18 a869383e163a18cdedcf587383c1eca043129754
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
//
//  Copyright © 2018年 Zhejiang Dahua Technology Co.,Ltd. All rights reserved.
//
 
#import "DHNetSDKInterface.h"
#import <LCOpenSDKDynamic/LCOpenSDK/LCOpenSDK_SoftAP.h>
#import <LCOpenSDKDynamic/LCOpenNetSDK/netsdk.h>
#import <LCBaseModule/DHClientEventLogHelper.h>
#import <LCBaseModule/DHFileManager.h>
#import <LCBaseModule/NSString+Dahua.h>
#import <LCBaseModule/NSObject+JSON.h>
 
/// 网卡类型
typedef enum : NSUInteger {
    DHNetworkCardTypeUnknown, ///获取失败
    DHNetworkCardTypeWlan0,
    DHNetworkCardTypeEth2,
} DHNetworkCardType;
 
@interface DHNetSDKInterface()
@property (nonatomic, copy) DHNetSDKSearchDeviceCallback searchCallback;
@property (nonatomic, copy) DHNetSDKDisconnetCallback disconnectCallback;
@end
 
@implementation DHNetSDKInterface
 
+ (instancetype)sharedInstance {
    static dispatch_once_t onceToken;
    static DHNetSDKInterface *instance = nil;
    dispatch_once(&onceToken, ^{
        instance = [[self alloc] init];
    });
    return instance;
}
 
+ (void)initSDK {
    CLIENT_Init(fDisconnect, NULL);
}
 
+ (void)startNetSDKReportByRequestId:(NSString *)requestId{
    
    DHNetSDKInterface.sharedInstance.requestId = requestId;
    
    NSString *path = [[DHFileManager supportFolder] stringByAppendingPathComponent:@"cache"];
    [DHNetSDKInterface logOpen: path];
}
 
+ (void)stopNetSDKReport {
    CLIENT_LogClose();
}
 
- (void)setDisconnectCallback:(DHNetSDKDisconnetCallback)callback {
    _disconnectCallback = nil;
    _disconnectCallback = callback;
}
 
+ (void)logOpen:(NSString *)path {
    if (path == nil) {
        NSLog(@" 日志打开失败:路径为空");
        return;
    }
    
    LOG_SET_PRINT_INFO *logopen = (LOG_SET_PRINT_INFO *)malloc(sizeof(LOG_SET_PRINT_INFO));
    memset(logopen, 0, sizeof(LOG_SET_PRINT_INFO));
    logopen->dwSize = sizeof(LOG_SET_PRINT_INFO);
    logopen->bSetFilePath = YES;
    logopen->nPrintStrategy = 1;
    logopen->bSetPrintStrategy = YES;
    logopen->cbSDKLogCallBack = netSDKLogCallBack;
    safe_strcpy(logopen->szLogFilePath, [path UTF8String]);
    
    BOOL ret = CLIENT_LogOpen(logopen);
    NSLog(@" 日志打开: %d",ret);
}
 
 
int netSDKLogCallBack(const char* szLogBuffer, unsigned int nLogSize, LDWORD dwUser){
    
    NSString *content = [NSString stringWithUTF8String:szLogBuffer];
    NSDictionary *jsonDic = [content dh_jsonDictionary];
    NSString *type = jsonDic[@"type"];
    NSDictionary *contentDic = jsonDic[@"log"];
    NSMutableDictionary *contentMutableDic = contentDic.mutableCopy;
    NSString *requestId = [DHNetSDKInterface sharedInstance].requestId;
    if(requestId){
        contentMutableDic[@"requestId"] = requestId;
    }
    
    [[DHClientEventLogHelper shareInstance] addClientEventLog:type conent:contentMutableDic];
    
    //    NSLog(@"28614---%@", content);
    return 0;
}
 
 
+ (DHDeviceInfoLogModel *)initDevAccount:(NSString *)password device:(DHDeviceNetInfo *)deviceNetInfo useIp:(BOOL)useIp {
    if(useIp) {
        return [self private_initDevAccountUseIp:password device:deviceNetInfo];
    }
    
    return [self private_initDevAccount:password device:deviceNetInfo];
}
 
+ (DHDeviceInfoLogModel *)private_initDevAccount:(NSString *)password device:(DHDeviceNetInfo *)deviceNetInfo {
    if(password.length == 0) {
        return nil;
    }
    
    NET_IN_INIT_DEVICE_ACCOUNT *pInitAccountIn = (NET_IN_INIT_DEVICE_ACCOUNT *)malloc(sizeof(NET_IN_INIT_DEVICE_ACCOUNT));
    safe_strcpy(pInitAccountIn->szMac, [deviceNetInfo.deviceMac UTF8String]);
    safe_strcpy(pInitAccountIn->szUserName, [@"admin" UTF8String]);
    pInitAccountIn->dwSize = sizeof(NET_IN_INIT_DEVICE_ACCOUNT);
    
    //只需要改变bit3位为1,其他位不用处理
    pInitAccountIn->byInitStatus = (deviceNetInfo.initStatus | 0x08);
    safe_strcpy(pInitAccountIn->szPwd, [password UTF8String]);
    pInitAccountIn->byPwdResetWay = deviceNetInfo.byPWDResetWay;
    safe_strcpy(pInitAccountIn->szCellPhone,"");
    safe_strcpy(pInitAccountIn->szMail,"");
    pInitAccountIn->byReserved[0] = 0;
    pInitAccountIn->byReserved[1] = 0;
    
    NET_OUT_INIT_DEVICE_ACCOUNT* pInitAccountOut = (NET_OUT_INIT_DEVICE_ACCOUNT *)malloc(sizeof(NET_OUT_INIT_DEVICE_ACCOUNT));
    pInitAccountOut->dwSize = sizeof(NET_OUT_INIT_DEVICE_ACCOUNT);
    
    NSLog(@"DHNetSDKInterface::Init by multi with mac:%@, password:%@", deviceNetInfo.deviceMac, password);
    BOOL ret = NO;
    
    for (int i = 0; i < 3; i++)
    {
        ret = CLIENT_InitDevAccount(pInitAccountIn, pInitAccountOut,5 * 1000,NULL);
        NSLog(@"DHNetSDKInterface::Init by multi with result:%d", ret);
        if(ret) {
            break;
        } else {
            long lastError = CLIENT_GetLastError();
            NSLog(@"NetSDKInteface:: Init by multi failed with lastError:...0x%lx", lastError);
        }
    }
    
    free(pInitAccountIn);
    free(pInitAccountOut);
 
    return [self setupModelData:deviceNetInfo isSuccess:ret];
}
 
+ (DHDeviceInfoLogModel *)private_initDevAccountUseIp:(NSString *)password device:(DHDeviceNetInfo *)deviceNetInfo {
    if(deviceNetInfo.deviceIP.length == 0 || password.length == 0) {
        return nil;
    }
    
    NET_IN_INIT_DEVICE_ACCOUNT stIn = {0};
    stIn.dwSize = sizeof(stIn);
 
    safe_strcpy(stIn.szMac, [deviceNetInfo.deviceMac UTF8String]);
    stIn.byPwdResetWay = deviceNetInfo.byPWDResetWay;//需要确认
    safe_strcpy(stIn.szUserName,"admin");
    safe_strcpy(stIn.szPwd,[password UTF8String]);
    safe_strcpy(stIn.szCellPhone,"");
    safe_strcpy(stIn.szMail,"");
    
    NET_OUT_INIT_DEVICE_ACCOUNT stOut = {0};
    stOut.dwSize = sizeof(stOut);
    NSLog(@"28614 -----");
    char *deviceIp = (char *)[deviceNetInfo.deviceIP UTF8String];
    
    NSLog(@"DHNetSDKInterface::Init by ip with mac:%@, ip:%@, password:%@", deviceNetInfo.deviceMac, deviceNetInfo.deviceIP, password);
    
    BOOL ret = CLIENT_InitDevAccountByIP(&stIn, &stOut, 5000, NULL, deviceIp);
    NSLog(@"DHNetSDKInterface::Init by ip with result 1:%d", ret);
    if (!ret) {
        long lastError = CLIENT_GetLastError();
        NSLog(@"NetSDKInteface:: Init by ip failed with lastError:...0x%lx", lastError);
        ret = CLIENT_InitDevAccountByIP(&stIn, &stOut, 5000, NULL, deviceIp);
        NSLog(@"DHNetSDKInterface::Init by ip with result 2:%d", ret);
    }
    
    return [self setupModelData:deviceNetInfo isSuccess:ret];
}
 
//上报设备初始化log需要
+ (DHDeviceInfoLogModel *)setupModelData:(DHDeviceNetInfo *)deviceNetInfo isSuccess:(BOOL)isSuccess
{
    DHDeviceInfoLogModel *model = [[DHDeviceInfoLogModel alloc]init];
    model.isSuccess         = isSuccess;
    model.mac               = deviceNetInfo.deviceMac;
    model.pwdResetWay       = deviceNetInfo.byPWDResetWay;
    model.isNewDeviceVersion = !(deviceNetInfo.deviceInitType == DHDeviceInitTypeOldDevice);
    model.isEffectiveIP     = deviceNetInfo.deviceInitType == DHDeviceInitTypeIPEnable;
    model.ip                = deviceNetInfo.ip;
    return model;
}
 
- (long)startSearchDevices:(DHNetSDKSearchDeviceCallback)callback byLocalIp:(NSString *)localIp {
    if (self.searchCallback == nil) {
        self.searchCallback = callback;
    }
    
    NET_IN_STARTSERACH_DEVICE inSearch = {0};
    inSearch.dwSize = sizeof(NET_IN_STARTSERACH_DEVICE);
    inSearch.cbSearchDevices = netSearchResultEx;
    
    if (localIp) {
        memcpy(inSearch.szLocalIp, [localIp UTF8String], localIp.length);
    }
    
    NET_OUT_STARTSERACH_DEVICE outSearch = {0};
    outSearch.dwSize = sizeof(NET_OUT_STARTSERACH_DEVICE);
    
    return CLIENT_StartSearchDevicesEx(&inSearch, &outSearch);
}
 
- (long)startSearchDevices:(DHNetSDKSearchDeviceCallback)callback {
    if (self.searchCallback == nil) {
        self.searchCallback = callback;
    }
    
    NET_IN_STARTSERACH_DEVICE inSearch = {0};
    inSearch.dwSize = sizeof(NET_IN_STARTSERACH_DEVICE);
    inSearch.cbSearchDevices = netSearchResultEx;
    
    //DTS000308350 填了手机IP,会导致搜索到的内容变少
//    NSString *ipAddr = UIDevice.lc_getIPAddress;
//    memcpy(inSearch.szLocalIp, [ipAddr UTF8String], ipAddr.length);
    
    //默认使用广播+组播方式
//    inSearch.emSendType = EM_SEND_SEARCH_TYPE_MULTICAST;
 
    NET_OUT_STARTSERACH_DEVICE outSearch = {0};
    outSearch.dwSize = sizeof(NET_OUT_STARTSERACH_DEVICE);
 
    return CLIENT_StartSearchDevicesEx(&inSearch, &outSearch);
}
 
- (void)stopSearchDevices:(long)handle {
    self.searchCallback = nil;
    CLIENT_StopSearchDevices(handle);
}
 
+ (DHNetLoginDeviceInfo *)loginWithHighLevelSecurityByIP:(NSString *)devIP port:(NSInteger)port username:(NSString *)username password:(NSString *)password errorCode:(unsigned int *)errorCode {
    DHNetLoginDeviceInfo *deviceInfo = [DHNetLoginDeviceInfo new];
    
    tagNET_IN_LOGIN_WITH_HIGHLEVEL_SECURITY inLoginInfo;
    memset(&inLoginInfo, 0, sizeof(tagNET_IN_LOGIN_WITH_HIGHLEVEL_SECURITY));
    inLoginInfo.dwSize = sizeof(tagNET_IN_LOGIN_WITH_HIGHLEVEL_SECURITY);
    safe_strcpy(inLoginInfo.szIP, [devIP UTF8String]);
    inLoginInfo.nPort = (unsigned int)port;
    safe_strcpy(inLoginInfo.szUserName, [username UTF8String]);
    safe_strcpy(inLoginInfo.szPassword, [password UTF8String]);
    
    tagNET_OUT_LOGIN_WITH_HIGHLEVEL_SECURITY outLoginInfo;
    memset(&outLoginInfo, 0, sizeof(tagNET_OUT_LOGIN_WITH_HIGHLEVEL_SECURITY));
    outLoginInfo.dwSize = sizeof(tagNET_OUT_LOGIN_WITH_HIGHLEVEL_SECURITY);
    
    long loginHandle = CLIENT_LoginWithHighLevelSecurity(&inLoginInfo, &outLoginInfo);
    NET_DEVICEINFO_Ex m_deviceInfo = outLoginInfo.stuDeviceInfo;
    deviceInfo.loginHandle = loginHandle;
    deviceInfo.deviceId = [[NSString alloc] initWithFormat:@"%s", m_deviceInfo.sSerialNumber];
    deviceInfo.alarmInPortNum = m_deviceInfo.nAlarmInPortNum;
    deviceInfo.alarmOutPortNum = m_deviceInfo.nAlarmOutPortNum;
    deviceInfo.DVRType = m_deviceInfo.nDVRType;
    deviceInfo.diskNum = m_deviceInfo.nDiskNum;
    deviceInfo.channelNum = m_deviceInfo.nChanNum;
    
    switch(outLoginInfo.nError)
    {
        case 1:
            *errorCode = NET_LOGIN_ERROR_PASSWORD;
            break;
        case 2:
            *errorCode = NET_LOGIN_ERROR_USER;
            break;
        case 3:
            *errorCode = NET_LOGIN_ERROR_TIMEOUT;
            break;
        case 4:
            *errorCode = NET_LOGIN_ERROR_RELOGGIN;
            break;
        case 5:
            *errorCode = NET_LOGIN_ERROR_LOCKED;
            break;
        case 6:
            *errorCode = NET_LOGIN_ERROR_BLACKLIST;
            break;
        case 7:
            *errorCode = NET_LOGIN_ERROR_BUSY;
            break;
        case 10:
            *errorCode = NET_LOGIN_ERROR_MAXCONNECT;
            break;
        case 17:
            *errorCode = NET_LOGIN_ERROR_USER_OR_PASSOWRD;
            break;
        default:
            *errorCode = outLoginInfo.nError;
    }
    
    NSLog(@"❗️DHNetSDKInterface:: loginWithHighLevelSecurity by ip:%@, result:%ld, error:0x%x", devIP, loginHandle, *errorCode);
    return deviceInfo;
}
 
+ (DHNetLoginDeviceInfo *)loginDeviceByIP:(NSString *)devIP port:(NSInteger)port username:(NSString *)username password:(NSString *)password errorCode:(unsigned int *)errorCode {
    DHNetLoginDeviceInfo *deviceInfo = [DHNetLoginDeviceInfo new];
    NET_DEVICEINFO_Ex m_deviceInfo = {0};
    int error;
    EM_LOGIN_SPAC_CAP_TYPE type = EM_LOGIN_SPEC_CAP_TCP;
    
    long loginHandle = CLIENT_LoginEx2([devIP UTF8String], port > 0 ? port : 37777, [username UTF8String], [password UTF8String], type, NULL, &m_deviceInfo, &error);
    deviceInfo.loginHandle = loginHandle;
    deviceInfo.deviceId = [[NSString alloc] initWithFormat:@"%s", m_deviceInfo.sSerialNumber];
    deviceInfo.alarmInPortNum = m_deviceInfo.nAlarmInPortNum;
    deviceInfo.alarmOutPortNum = m_deviceInfo.nAlarmOutPortNum;
    deviceInfo.DVRType = m_deviceInfo.nDVRType;
    deviceInfo.diskNum = m_deviceInfo.nDiskNum;
    deviceInfo.channelNum = m_deviceInfo.nChanNum;
    
    switch(error)
    {
        case 1:
            *errorCode = NET_LOGIN_ERROR_PASSWORD;
            break;
        case 2:
            *errorCode = NET_LOGIN_ERROR_USER;
            break;
        case 3:
            *errorCode = NET_LOGIN_ERROR_TIMEOUT;
            break;
        case 4:
            *errorCode = NET_LOGIN_ERROR_RELOGGIN;
            break;
        case 5:
            *errorCode = NET_LOGIN_ERROR_LOCKED;
            break;
        case 6:
            *errorCode = NET_LOGIN_ERROR_BLACKLIST;
            break;
        case 7:
            *errorCode = NET_LOGIN_ERROR_BUSY;
            break;
        case 10:
            *errorCode = NET_LOGIN_ERROR_MAXCONNECT;
            break;
        case 17:
            *errorCode = NET_LOGIN_ERROR_USER_OR_PASSOWRD;
            break;
    }
    
    NSLog(@"❗️DHNetSDKInterface:: Login by ip:%@, result:%ld, error:0x%x", devIP, loginHandle, *errorCode);
    return deviceInfo;
}
 
+ (void)logout:(long)loginHandle {
    CLIENT_Logout(loginHandle);
    NSLog(@"🍎🍎🍎 %@:: Logout by login handle %ld", NSStringFromClass([self class]), loginHandle);
}
 
#pragma mark - Query WifiInfo
 
+ (DHApWifiInfo*)queryWifiByLoginHandle:(long)loginHandle mssId:(NSString *)mssid errorCode:(unsigned int *)errorCode {
    DHNetworkCardType cardType = [self getNetworkCardType:loginHandle];
    if (loginHandle == 0 ) {
        return nil;
    }
    
    DHApWifiInfo *wifiInfo = nil;
    
    NET_IN_WLAN_ACCESSPOINT accessPointIn;
    memset(&accessPointIn, 0, sizeof(NET_IN_WLAN_ACCESSPOINT));
    accessPointIn.dwSize = sizeof(NET_IN_WLAN_ACCESSPOINT);
    
    strcpy(accessPointIn.szSSID, [mssid UTF8String]);
    
    NET_OUT_WLAN_ACCESSPOINT accessPointOut;
    memset(&accessPointOut, 0, sizeof(NET_IN_WLAN_ACCESSPOINT));
    accessPointOut.dwSize = sizeof(NET_OUT_WLAN_ACCESSPOINT);
    
    NSLog(@"v3_loadWifiListByLoginHandle");
    BOOL isSucceed = CLIENT_QueryDevInfo(loginHandle, NET_QUERY_WLAN_ACCESSPOINT, &accessPointIn, &accessPointOut, NULL, 5000 * 4);
    if (isSucceed) {
        NSLog(@"🍎🍎🍎 %@:: Get wifi list count:%d", NSStringFromClass([self class]), accessPointOut.nCount);
        if(accessPointOut.nCount > 0) {
            
            NET_WLAN_ACCESSPOINT_INFO accessPointInfo = accessPointOut.stuInfo[0];
            
            int encrAlgr = accessPointInfo.nEncrAlgr;
            int authorityMode = accessPointInfo.nAuthMode;
            int encryptionAuthority = [self v3_convertToEncryptionAuthorityMode:authorityMode withEncryption:encrAlgr];
            wifiInfo = [DHApWifiInfo new];
            wifiInfo.selected = NO;
 
            wifiInfo.name = [NSString stringWithUTF8String: accessPointInfo.szSSID];
            wifiInfo.encryptionAuthority = encryptionAuthority;
            wifiInfo.linkQuality = accessPointInfo.nStrength;
            wifiInfo.autoConnect = (authorityMode == 0 && encrAlgr == 0);
            wifiInfo.netcardName = cardType == DHNetworkCardTypeWlan0 ? @"wlan0" : @"";
            
            NSLog(@"🍎🍎🍎 %@:: Get wifi:%@, authorityMode:%d, encrAlgr:%d, encryptionAuthority: %d, quality:%ld", NSStringFromClass([self class]), wifiInfo.name, authorityMode, encrAlgr, encryptionAuthority, (long)wifiInfo.linkQuality);
        }
    } else {
        NSLog(@"NetSDKInteface:: Load wifilist failed with errorCode:...0x%x", CLIENT_GetLastError());
    }
    
    return wifiInfo;
}
 
#pragma mark - Wifi
 
+ (NSArray<DHApWifiInfo*> *)loadWifiListByLoginHandle:(long)loginHandle errorCode:(unsigned int *)errorCode {
    
    NET_PARAM param = {0};
    param.nConnectTime = 5000;
    CLIENT_SetNetworkParam(&param);
    
    BOOL isSupportWlanV3 = [self querySupportWlanConfigV3:loginHandle];
    if (isSupportWlanV3) {
        return [self v3_loadWifiListByLoginHandle:loginHandle errorCode:errorCode];
    }
    
    return [self v2_loadWifiListByLoginHandle:loginHandle errorCode:errorCode];
}
 
+ (BOOL)scDeviceApConnectWifi:(NSString *)mSSID
                         password:(NSString *)password
                           ip:(NSString *)deviceIP port:(NSInteger)port encryptionAuthority:(int)encryptionAuthority{
    int errorCode = 0;
    
    NET_IN_SET_DEV_WIFI inDevWifi;
    memset(&inDevWifi, 0, sizeof(NET_IN_SET_DEV_WIFI));
    NET_OUT_SET_DEV_WIFI outDevWifi;
    memset(&outDevWifi, 0, sizeof(NET_OUT_SET_DEV_WIFI));
    
    inDevWifi.nEnable = 0; //0:使能 1:关闭
    safe_strcpy(inDevWifi.szSSID, [mSSID UTF8String]);
    inDevWifi.nKeyFlag = 0;
    inDevWifi.nConnectedFlag = 1;// 0: 无连接, 1: 连接 
    inDevWifi.nEncryption = encryptionAuthority;//加密;0:off,2:WEP64bit,3:WEP128bit, 4:WPA-PSK-TKIP, 5: WPA-PSK-CCMP
//    strcpy(inDevWifi.szWPAKeys, [password UTF8String]);
    
    if (encryptionAuthority>=4 && encryptionAuthority<=12) {
        safe_strcpy(inDevWifi.szWPAKeys, [password UTF8String]);
    } else {
        safe_strcpy(inDevWifi.szKeys[0], [password UTF8String]);
    }
    
    inDevWifi.nLinkMode = 0;//连接模式;0:auto,1:adhoc,2:Infrastructure
    inDevWifi.nKeyID = 0;
    inDevWifi.nPort = (unsigned int)port;
    safe_strcpy(inDevWifi.szDevIP, [deviceIP UTF8String]);
    inDevWifi.dwSize = sizeof(NET_IN_SET_DEV_WIFI);
    
    outDevWifi.dwSize = sizeof(NET_OUT_SET_DEV_WIFI);
    
    BOOL success = CLIENT_SetDevWifiInfo(&inDevWifi, &outDevWifi, 5000 * 2);
 
    if (success)
    {
        NSLog(@"CLIENT_ParseData 28614 ");
    } else {
        errorCode = CLIENT_GetLastError();
        NSLog(@"%s with errorCode:0x%x", __FUNCTION__, errorCode);
    }
 
    return success;
}
 
+ (NSArray <DHApWifiInfo *>*)scDeviceApLoadWifiList:(NSString *)deviceIP port:(NSInteger)port error:(unsigned int *)errorCode {
    
    NSMutableArray<DHApWifiInfo *> * wifiList = [NSMutableArray new];
    
    NET_IN_GET_DEV_WIFI_LIST wifiListIn;
    memset(&wifiListIn, 0, sizeof(NET_IN_GET_DEV_WIFI_LIST));
    wifiListIn.dwSize = sizeof(NET_IN_GET_DEV_WIFI_LIST);
    safe_strcpy(wifiListIn.szDevIP, [deviceIP UTF8String]);
    wifiListIn.nPort = (unsigned int)port;
    
    NET_OUT_GET_DEV_WIFI_LIST wifiListOut;
    memset(&wifiListOut, 0, sizeof(NET_OUT_GET_DEV_WIFI_LIST));
    wifiListOut.dwSize = sizeof(NET_OUT_GET_DEV_WIFI_LIST);
   
    BOOL isSucceed = CLIENT_GetDevWifiListInfo(&wifiListIn, &wifiListOut, 5000 * 4);
    
    if(!isSucceed){
        NET_IN_GET_DEV_WIFI_LIST wifiListIn;
        memset(&wifiListIn, 0, sizeof(NET_IN_GET_DEV_WIFI_LIST));
        wifiListIn.dwSize = sizeof(NET_IN_GET_DEV_WIFI_LIST);
        safe_strcpy(wifiListIn.szDevIP, [deviceIP UTF8String]);
        wifiListIn.nPort = (unsigned int)port;
        
        NET_OUT_GET_DEV_WIFI_LIST wifiListOut;
        memset(&wifiListOut, 0, sizeof(NET_OUT_GET_DEV_WIFI_LIST));
        wifiListOut.dwSize = sizeof(NET_OUT_GET_DEV_WIFI_LIST);
        isSucceed = CLIENT_GetDevWifiListInfo(&wifiListIn, &wifiListOut, 5000 * 2);
    }
    
    if (isSucceed) {
        NSLog(@"🍎🍎🍎 %@:: Get wifi list count:%d", NSStringFromClass([self class]), wifiListOut.nWlanDevCount);
        for (int i = 0; i < wifiListOut.nWlanDevCount; i++) {
            
            DHDEV_WLAN_DEVICE_EX wlanDeviceInfo = wifiListOut.stuWlanDev[i];
            
            int encrAlgr = wlanDeviceInfo.byEncrAlgr;
            int authorityMode = wlanDeviceInfo.byAuthMode;
            int encryptionAuthority = [self scDevice_convertToEncryptionAuthorityMode:authorityMode withEncryption:encrAlgr];
            
            DHApWifiInfo *wifiInfo = [DHApWifiInfo new];
            wifiInfo.selected = NO;
            
            wifiInfo.name = [NSString stringWithUTF8String: wlanDeviceInfo.szSSID];
            wifiInfo.encryptionAuthority = encryptionAuthority;
            wifiInfo.linkQuality =  wlanDeviceInfo.nRSSIQuality + 100;
            wifiInfo.autoConnect = (authorityMode == 0 && encrAlgr == 0);
            wifiInfo.netcardName = @"wlan0";
            [wifiList addObject:wifiInfo];
            
            NSLog(@"🍎🍎🍎 %@:: Get wifi:%@, authorityMode:%d, encrAlgr:%d, encryptionAuthority: %d, quality:%ld", NSStringFromClass([self class]), wifiInfo.name, authorityMode, encrAlgr, encryptionAuthority, (long)wifiInfo.linkQuality);
        }
    } else {
        NSLog(@"NetSDKInteface:: Load wifilist failed with errorCode:...0x%x", CLIENT_GetLastError());
    }
    
    return wifiList;
}
 
+ (NSArray<DHApWifiInfo*> *)v3_loadWifiListByLoginHandle:(long)loginHandle errorCode:(unsigned int *)errorCode {
    DHNetworkCardType cardType = [self getNetworkCardType:loginHandle];
    if (loginHandle == 0 || cardType == DHNetworkCardTypeUnknown) {
        return nil;
    }
    
    NSMutableArray<DHApWifiInfo *> * wifiList = [NSMutableArray new];
    
    NET_IN_WLAN_ACCESSPOINT accessPointIn;
    memset(&accessPointIn, 0, sizeof(NET_IN_WLAN_ACCESSPOINT));
    accessPointIn.dwSize = sizeof(NET_IN_WLAN_ACCESSPOINT);
    
    if (cardType == DHNetworkCardTypeWlan0) {
        safe_strcpy(accessPointIn.szName, "wlan0");
    }
    
    NET_OUT_WLAN_ACCESSPOINT accessPointOut;
    memset(&accessPointOut, 0, sizeof(NET_IN_WLAN_ACCESSPOINT));
    accessPointOut.dwSize = sizeof(NET_OUT_WLAN_ACCESSPOINT);
    
    BOOL isSucceed = CLIENT_QueryDevInfo(loginHandle, NET_QUERY_WLAN_ACCESSPOINT, &accessPointIn, &accessPointOut, NULL, 5000 * 2);
    if (isSucceed) {
        NSLog(@"🍎🍎🍎 %@:: Get wifi list count:%d", NSStringFromClass([self class]), accessPointOut.nCount);
        for (int i = 0; i < accessPointOut.nCount; i++) {
            
            NET_WLAN_ACCESSPOINT_INFO accessPointInfo = accessPointOut.stuInfo[i];
            
            int encrAlgr = accessPointInfo.nEncrAlgr;
            int authorityMode = accessPointInfo.nAuthMode;
            int encryptionAuthority = [self v3_convertToEncryptionAuthorityMode:authorityMode withEncryption:encrAlgr];
            
            DHApWifiInfo *wifiInfo = [DHApWifiInfo new];
            wifiInfo.selected = NO;
            
            wifiInfo.name = [NSString stringWithUTF8String: accessPointInfo.szSSID];
            wifiInfo.encryptionAuthority = encryptionAuthority;
            wifiInfo.linkQuality = accessPointInfo.nStrength;
            wifiInfo.autoConnect = (authorityMode == 0 && encrAlgr == 0);
            wifiInfo.netcardName = cardType == DHNetworkCardTypeWlan0 ? @"wlan0" : @"";
            [wifiList addObject:wifiInfo];
            
            NSLog(@"🍎🍎🍎 %@:: Get wifi:%@, authorityMode:%d, encrAlgr:%d, encryptionAuthority: %d, quality:%ld", NSStringFromClass([self class]), wifiInfo.name, authorityMode, encrAlgr, encryptionAuthority, (long)wifiInfo.linkQuality);
        }
    } else {
        NSLog(@"NetSDKInteface:: Load wifilist failed with errorCode:...0x%x", CLIENT_GetLastError());
    }
    
    return wifiList;
}
 
+ (NSArray<DHApWifiInfo*> *)v2_loadWifiListByLoginHandle:(long)loginHandle errorCode:(unsigned int *)errorCode {
    if (loginHandle == 0) {
        return nil;
    }
    
    NSMutableArray<DHApWifiInfo *> * mCellData = [NSMutableArray new];
    
    unsigned int errCode2 = 0;
    DHDEV_WLAN_DEVICE_LIST_EX wifiList;
    memset(&wifiList, 0, sizeof(wifiList));
    wifiList.dwSize = sizeof(wifiList);
    BOOL bRet = CLIENT_GetDevConfig(loginHandle, DH_DEV_WLAN_DEVICE_CFG_EX, 0, &wifiList, sizeof(wifiList), &errCode2,10000);
    
    NSLog(@"NetSDKInteface:: Load wifilist by CLIENT_GetDevConfig result...%d, errorCode:%d", bRet, errCode2);
    
    if(bRet)
    {
        if(wifiList.bWlanDevCount > 0)
        {
            NSLog(@"🍎🍎🍎 %@:: Get wifi list count:%d", NSStringFromClass([self class]), wifiList.bWlanDevCount);
            for(int i=0;i<wifiList.bWlanDevCount;i++)
            {
                NSString * wifiName = [NSString stringWithUTF8String:wifiList.lstWlanDev[i].szSSID];
                int encrytion = wifiList.lstWlanDev[i].byEncrAlgr;
                int authorityMode = wifiList.lstWlanDev[i].byAuthMode;
                int encrAlgr = wifiList.lstWlanDev[i].byEncrAlgr;
                int encryptionAuthority = [self v2_convertToEncryptionAuthorityMode:authorityMode withEncryption:encrytion];
                
                DHApWifiInfo *wifiInfo = [DHApWifiInfo new];
                wifiInfo.selected = NO;
                wifiInfo.name = wifiName;
                wifiInfo.encryptionAuthority = encryptionAuthority;
                wifiInfo.linkQuality = wifiList.lstWlanDev[i].nRSSIQuality + 100;
                wifiInfo.autoConnect = (authorityMode == 0 && encrAlgr == 0);
                wifiInfo.netcardName = @"";
                [mCellData addObject:wifiInfo];
                
                NSLog(@"🍎🍎🍎 %@:: Get wifi:%@, authorityMode:%d, encrAlgr:%d, encryptionAuthority: %d, quality:%ld", NSStringFromClass([self class]), wifiInfo.name, authorityMode, encrAlgr, encryptionAuthority, (long)wifiInfo.linkQuality);
            }
        }
    } else {
        //#define _EC(x) (0x80000000|x)
        *errorCode = CLIENT_GetLastError();
        NSLog(@"NetSDKInteface:: Load wifilist failed with errorCode:...0x%x", *errorCode);
    }
    
    return mCellData;
}
 
 
+ (NSInteger)connectWIFIByDeviceId:(NSString *)deviceID
                         ssid:(NSString *)ssid
                     password:(NSString *)password
                    devicePwd:(NSString *)devicePwd
                         isSC:(BOOL)isSC {
    LCOpenSDK_SoftAP *softAp = [[LCOpenSDK_SoftAP alloc]init];
    NSInteger errorCode = [softAp startSoftAPConfig:ssid wifiPwd:password deviceId:deviceID devicePwd:devicePwd isSC:isSC];
    NSLog(@"%s with errorCode:0x%lx", __FUNCTION__, (long)errorCode);
    return errorCode;
}
 
#pragma mark - Encryption Convert
 
/*
 
 DataEncryption  这个是设备传给了NETSDK 范围是01234 然后NETSDK除了0之外都+3 传给了上层 导致APP端看起来不符合标准协议
 
 Authentication认证方式        DataEncryption数据加密方式        Encryption加密模式(二代对应枚举)
 WPA-NONE    6                NONE                0            "Off"   (0)
 OPEN        0                NONE                0            "On"   (1)
 OPEN        0                WEP                4                "WEP-OPEN" (13)
 SHARD        1                WEP                4                "WEP-SHARED" (14)
 WPA            2                TKIP                5            "WPA-TKIP"    (8)
 WPA-PSK        3                TKIP                5            "WPA-PSK-TKIP" (4)
 WPA2         4               TKIP                5            "WPA2-TKIP"    (10)
 WPA2-PSK    5                TKIP                5            "WPA2-PSK-TKIP" (6)
 WPA            2                AES(CCMP)            6            "WPA-AES"      (9)
 WPA-PSK        3                AES(CCMP)            6            "WPA-PSK-AES"  (5)
 WPA2        4                AES(CCMP)            6            "WPA2-AES"     (11)
 WPA2-PSK    5                AES(CCMP)            6           "WPA2-PSK-AES" (7)
 WPA              2              TKIP+AES( mix Mode,推荐AES)7         "WPA-TKIP"/"WPA-AES"  (8/9)
 WPA-PSK          3              TKIP+AES( mix Mode,推荐AES)7        "WPA-PSK-TKIP"/"WPA-PSK-AES" (4/5)
 WPA2         4               TKIP+AES ( mix Mode,推荐AES)7    "WPA2-TKIP"/"WPA2-AES" (10/11)
 WPA2-PSK     5               TKIP+AES( mix Mode,推荐AES)7        "WPA2-PSK-TKIP"/"WPA2-PSK-AES" (6/7)
 "AUTO" (12)
 以下是混合模式
 WPA-PSK|WPA2-PSK 7    3|5
 WPA|WPA2         8    2|4
 WPA|WPA-PSK      9    2|3
 WPA2|WPA2-PSK    10    4|5
 WPA|WPA-PSK|WPA2|WPA2-PSK 11    2|3|4|5
 */
+ (int)scDevice_convertToEncryptionAuthorityMode:(int)byAuthMode withEncryption:(int)byEncrAlgr {
    int nEncryption = 0;
    
    if (byAuthMode == 6 && byEncrAlgr == 0) {
        nEncryption = 0;
    } else if (byAuthMode == 0 && byEncrAlgr == 0) {
        nEncryption = 1;
    } else if (byAuthMode == 0 && byEncrAlgr == 4) {
        nEncryption = 13;
    } else if (byAuthMode == 1 && byEncrAlgr == 4) {
        nEncryption = 14;
    } else if (byAuthMode == 2 && byEncrAlgr == 5) {
        nEncryption = 8;
    } else if (byAuthMode == 3 && byEncrAlgr == 5) {
        nEncryption = 4;
    } else if (byAuthMode == 4 && byEncrAlgr == 5) {
        nEncryption = 10;
    } else if (byAuthMode == 5 && byEncrAlgr == 5) {
        nEncryption = 6;
    } else if (byAuthMode == 2 && byEncrAlgr == 6) {
        nEncryption = 9;
    } else if (byAuthMode == 3 && byEncrAlgr == 6) {
        nEncryption = 5;
    } else if (byAuthMode == 4 && byEncrAlgr == 6) {
        nEncryption = 11;
    } else if (byAuthMode == 5 && byEncrAlgr == 6) {
        nEncryption = 7;
    } else if (byAuthMode == 2 && byEncrAlgr == 7) {
        nEncryption = 9;  // 8或者9
    } else if (byAuthMode == 3 && byEncrAlgr == 7) {
        nEncryption = 5;  // 4或5
    } else if (byAuthMode == 4 && byEncrAlgr == 7) {
        nEncryption = 11;  // 10或11
    } else if (byAuthMode == 5 && byEncrAlgr == 7) {
        nEncryption = 7;  // 6或7
    } else if (byAuthMode == 7)  // 混合模式WPA-PSK|WPA2-PSK   3或5
    {
        if (byEncrAlgr == 5) {
            nEncryption = 6;  // 4或6
        } else if (byEncrAlgr == 6) {
            nEncryption = 7;  // 5或7
        } else if (byEncrAlgr == 7) {
            nEncryption = 7;  // 4或5或6或7
        } else {
            nEncryption = 12;
        }
    } else if (byAuthMode == 8)  // 混合模式WPA|WPA2    2或4
    {
        if (byEncrAlgr == 5) {
            nEncryption = 10;  // 8或10
        } else if (byEncrAlgr == 6) {
            nEncryption = 11;  // 9或11
        } else if (byEncrAlgr == 7) {
            nEncryption = 10;  // 8或9或10或11
        } else {
            nEncryption = 12;
        }
    } else if (byAuthMode == 9)  // 混合模式WPA|WPA-PSK  2或3
    {
        if (byEncrAlgr == 5) {
            nEncryption = 8;  // 4或8
        } else if (byEncrAlgr == 6) {
            nEncryption = 9;  // 5或9
        } else if (byEncrAlgr == 7) {
            nEncryption = 9;  // 4或5或8或9
        } else {
            nEncryption = 12;
        }
    } else if (byAuthMode == 10)  // 混合模式WPA2|WPA2-PSK  4或5
    {
        if (byEncrAlgr == 5) {
            nEncryption = 10;  // 6或10
        } else if (byEncrAlgr == 6) {
            nEncryption = 11;  // 7或11
        } else if (byEncrAlgr == 7) {
            nEncryption = 11;  // 6或7或10或11
        } else {
            nEncryption = 12;
        }
    } else if (byAuthMode == 11)  // 混合模式WPA|WPA-PSK|WPA2|WPA2-PSK  2或3或4或5
    {
        if (byEncrAlgr == 5) {
            nEncryption = 10;  // 4或6或8或10
        } else if (byEncrAlgr == 6) {
            nEncryption = 11;  // 5或7或9或11
        } else if (byEncrAlgr == 7) {
            nEncryption = 11;  // 4或5或6或7或8或9或10或11
        } else {
            nEncryption = 12;
        }
    } else {
        nEncryption = 12;
    }
    return nEncryption;
}
 
/**
 *  此映射表查询用的三代接口 {@link com.company.NetSDK.INetSDK#QueryDevInfo}
 *  加密模式
 *  二代byAuthMode  , byEncrAlgr  与三代映射关系
 *  Authentication认证方式          DataEncryption数据加密方式     Encryption加密模式
 *  WPA-NONE 6                      NONE      0                     WPA-NONE       0
 *  OPEN     0                      NONE      0                     On               1
 *  OPEN     0                      WEP       1                     WEP-OPEN       2
 *  SHARED   1                      WEP       1                     WEP-SHARED     3
 *  WPA      2                      TKIP      2                     WPA-TKIP       4
 *  WPA-PSK  3                      TKIP      2                     WPA-PSK-TKIP   5
 *  WPA2     4                      TKIP      2                     WPA2-TKIP      6
 *  WPA2-PSK 5                      TKIP      2                     WPA2-PSK-TKIP  7
 *  WPA      2                      AES(CCMP) 3                     WPA-AES        8
 *  WPA-PSK  3                      AES(CCMP) 3                     WPA-PSK-AES    9
 *  WPA2     4                      AES(CCMP) 3                     WPA2-AES       10
 *  WPA2-PSK 5                      AES(CCMP) 3                     WPA2-PSK-AES   11
 *  WPA      2                      TKIP+AES( mix Mode) 4           WPA-TKIP或者WPA-AES  4或8
 *  WPA-PSK  3                      TKIP+AES( mix Mode) 4           WPA-PSK-TKIP或者WPA-PSK-AES 5或9
 *  WPA2     4                      TKIP+AES( mix Mode) 4           WPA2-TKIP或者WPA2-AES   6或10
 *  WPA2-PSK 5                      TKIP+AES( mix Mode) 4           WPA2-PSK-TKIP或者WPA2-PSK-AES 7或11
 *
 * 以下是混合模式
 * WPA-PSK|WPA2-PSK 7
 * WPA|WPA2         8
 * WPA|WPA-PSK      9
 * WPA2|WPA2-PSK    10
 * WPA|WPA-PSK|WPA2|WPA2-PSK 11
 */
+ (int)v3_convertToEncryptionAuthorityMode:(int)byAuthMode withEncryption:(int)byEncrAlgr
{
    /**
     * 三代映射的加密方式
     * @param byAuthMode  认证方式,  通过接口{@link com.company.NetSDK.INetSDK#QueryDevInfo},对应命令{@link FinalVar#NET_QUERY_WLAN_ACCESSPOINT}查询得到
     * @param byEncrAlgr  数据加密方式,   通过接口{@link com.company.NetSDK.INetSDK#QueryDevInfo},对应命令{@link FinalVar#NET_QUERY_WLAN_ACCESSPOINT}查询得到
     * @return nEncryption   用于{@link FinalVar#CFG_CMD_WLAN}配置WLAN   加密模式, 0: off, 1: on, 2: WEP-OPEN, 3: WEP-SHARED, 4: WPA-TKIP, 5: WPA-PSK-TKIP, 6: WPA2-TKIP, 7: WPA2-PSK-TKIP, 8: WPA-AES, 9: WPA-PSK-AES, 10: WPA2-AES, 11: WPA2-PSK-AES, 12: AUTO
     */
    int nEncryption = 0;
    
    if(byAuthMode == 6 && byEncrAlgr == 0)
    {
        nEncryption = 0;
    }
    else if(byAuthMode == 0 && byEncrAlgr == 0)
    {
        nEncryption = 1;
    }
    else  if(byAuthMode == 0 && byEncrAlgr == 1)
    {
        nEncryption = 2;
    }
    else  if(byAuthMode == 1 && byEncrAlgr == 1)
    {
        nEncryption = 3;
    }
    else  if(byAuthMode == 2 && byEncrAlgr == 2)
    {
        nEncryption = 4;
    }
    else  if(byAuthMode == 3 && byEncrAlgr == 2)
    {
        nEncryption = 5;
    }
    else  if(byAuthMode == 4 && byEncrAlgr == 2)
    {
        nEncryption = 6;
    }
    else  if(byAuthMode == 5 && byEncrAlgr == 2)
    {
        nEncryption = 7;
    }
    else  if(byAuthMode == 2 && byEncrAlgr == 3)
    {
        nEncryption = 8;
    }
    else  if(byAuthMode == 3 && byEncrAlgr == 3)
    {
        nEncryption = 9;
    }
    else  if(byAuthMode == 4 && byEncrAlgr == 3)
    {
        nEncryption = 10;
    }
    else  if(byAuthMode == 5 && byEncrAlgr == 3)
    {
        nEncryption = 11;
    }
    else  if(byAuthMode == 2 && byEncrAlgr == 4)
    {
        nEncryption = 8;  // 4或者8
    }
    else  if(byAuthMode == 3 && byEncrAlgr == 4)
    {
        nEncryption = 9;  // 5或9
    }
    else  if(byAuthMode == 4 && byEncrAlgr == 4)
    {
        nEncryption = 10;  // 6或10
    }
    else  if(byAuthMode == 5 && byEncrAlgr == 4)
    {
        nEncryption = 11;  // 7或11
    }
    else if(byAuthMode == 7)  // 混合模式WPA-PSK|WPA2-PSK   3或5
    {
        if(byEncrAlgr == 2) {
            nEncryption = 7;  // 5或7
        }
        else if(byEncrAlgr == 3)
        {
            nEncryption = 11;  // 9或11
        }
        else if(byEncrAlgr == 4)
        {
            nEncryption = 11;  // 5或7或9或11
        }
        else
        {
            nEncryption = 12;
        }
    }
    else if(byAuthMode == 8)  // 混合模式WPA|WPA2    2或4
    {
        if(byEncrAlgr == 2) {
            nEncryption = 6;  // 4或6
        }
        else if(byEncrAlgr == 3)
        {
            nEncryption = 10;  // 8或10
        }
        else if(byEncrAlgr == 4)
        {
            nEncryption = 10;  // 4或6或8或10
        }
        else
        {
            nEncryption = 12;
        }
    }
    else if(byAuthMode == 9)  // 混合模式WPA|WPA-PSK  2或3
    {
        if(byEncrAlgr == 2) {
            nEncryption = 5;  // 4或5
        }
        else if(byEncrAlgr == 3)
        {
            nEncryption = 9;  // 8或9
        }
        else if(byEncrAlgr == 4)
        {
            nEncryption = 9;  // 4或5或8或9
        }
        else
        {
            nEncryption = 12;
        }
    }
    else if(byAuthMode == 10)  // 混合模式WPA2|WPA2-PSK  4或5
    {
        if(byEncrAlgr == 2) {
            nEncryption = 7;  // 6或7
        }
        else if(byEncrAlgr == 3)
        {
            nEncryption = 11;  // 10或11
        }
        else if(byEncrAlgr == 4)
        {
            nEncryption = 11;  // 6或7或10或11
        }
        else
        {
            nEncryption = 12;
        }
    }
    else if(byAuthMode == 11)  // 混合模式WPA|WPA-PSK|WPA2|WPA2-PSK  2或3或4或5
    {
        if(byEncrAlgr == 2) {
            nEncryption = 7;  // 4或5或6或7
        }
        else if(byEncrAlgr == 3)
        {
            nEncryption = 11;  // 8或9或10或11
        }
        else if(byEncrAlgr == 4)
        {
            nEncryption = 11;  // 4或5或6或7或8或9或10或11
        }
        else
        {
            nEncryption = 12;
        }
    } else {
        nEncryption = 12;
    }
    return nEncryption;
}
 
/**
 *  此映射表用的二代接口 {@link com.company.NetSDK.INetSDK#GetDevConfig}
 *  加密模式
 *  二代byAuthMode  , byEncrAlgr  与三代映射关系
 *  Authentication认证方式          DataEncryption数据加密方式     Encryption加密模式
 *  WPA-NONE 6                      NONE      0                     WPA-NONE       0
 *  OPEN     0                      NONE      0                     On               1
 *  OPEN     0                      WEP       4                     WEP-OPEN       2
 *  SHARED   1                      WEP       4                     WEP-SHARED     3
 *  WPA      2                      TKIP      5                     WPA-TKIP       4
 *  WPA-PSK  3                      TKIP      5                     WPA-PSK-TKIP   5
 *  WPA2     4                      TKIP      5                     WPA2-TKIP      6
 *  WPA2-PSK 5                      TKIP      5                     WPA2-PSK-TKIP  7
 *  WPA      2                      AES(CCMP) 6                     WPA-AES        8
 *  WPA-PSK  3                      AES(CCMP) 6                     WPA-PSK-AES    9
 *  WPA2     4                      AES(CCMP) 6                     WPA2-AES       10
 *  WPA2-PSK 5                      AES(CCMP) 6                     WPA2-PSK-AES   11
 *  WPA      2                      TKIP+AES( mix Mode) 7           WPA-TKIP或者WPA-AES  4或8
 *  WPA-PSK  3                      TKIP+AES( mix Mode) 7           WPA-PSK-TKIP或者WPA-PSK-AES 5或9
 *  WPA2     4                      TKIP+AES( mix Mode) 7           WPA2-TKIP或者WPA2-AES   6或10
 *  WPA2-PSK 5                      TKIP+AES( mix Mode) 7           WPA2-PSK-TKIP或者WPA2-PSK-AES 7或11
 *
 * 以下是混合模式
 * WPA-PSK|WPA2-PSK 7
 * WPA|WPA2         8
 * WPA|WPA-PSK      9
 * WPA2|WPA2-PSK    10
 * WPA|WPA-PSK|WPA2|WPA2-PSK 11
 */
+ (int)v2_convertToEncryptionAuthorityMode:(int)byAuthMode withEncryption:(int)byEncrAlgr {
    
    /**
     * 二代映射的加密方式
     * @param byAuthMode  认证方式,  通过接口{@link com.company.NetSDK.INetSDK#GetDevConfig},对应命令{@link FinalVar#SDK_DEV_WLAN_DEVICE_CFG_EX}查询得到
     * @param byEncrAlgr  数据加密方式,   通过接口{@link com.company.NetSDK.INetSDK#GetDevConfig},对应命令{@link FinalVar#SDK_DEV_WLAN_DEVICE_CFG_EX}查询得到
     * @return nEncryption   用于{@link FinalVar#CFG_CMD_WLAN}配置WLAN   加密模式, 0: off, 1: on, 2: WEP-OPEN, 3: WEP-SHARED, 4: WPA-TKIP, 5: WPA-PSK-TKIP, 6: WPA2-TKIP, 7: WPA2-PSK-TKIP, 8: WPA-AES, 9: WPA-PSK-AES, 10: WPA2-AES, 11: WPA2-PSK-AES, 12: AUTO
     */
    int nEncryption = 0;
    
    if(byAuthMode == 6 && byEncrAlgr == 0)
    {
        nEncryption = 0;
    }
    else if(byAuthMode == 0 && byEncrAlgr == 0)
    {
        nEncryption = 1;
    }
    else  if(byAuthMode == 0 && byEncrAlgr == 4)
    {
        nEncryption = 2;
    }
    else  if(byAuthMode == 1 && byEncrAlgr == 4)
    {
        nEncryption = 3;
    }
    else  if(byAuthMode == 2 && byEncrAlgr == 5)
    {
        nEncryption = 4;
    }
    else  if(byAuthMode == 3 && byEncrAlgr == 5)
    {
        nEncryption = 5;
    }
    else  if(byAuthMode == 4 && byEncrAlgr == 5)
    {
        nEncryption = 6;
    }
    else  if(byAuthMode == 5 && byEncrAlgr == 5)
    {
        nEncryption = 7;
    }
    else  if(byAuthMode == 2 && byEncrAlgr == 6)
    {
        nEncryption = 8;
    }
    else  if(byAuthMode == 3 && byEncrAlgr == 6)
    {
        nEncryption = 9;
    }
    else  if(byAuthMode == 4 && byEncrAlgr == 6)
    {
        nEncryption = 10;
    }
    else  if(byAuthMode == 5 && byEncrAlgr == 6)
    {
        nEncryption = 11;
    }
    else  if(byAuthMode == 2 && byEncrAlgr == 7)
    {
        nEncryption = 8;  // 4或者8
    }
    else  if(byAuthMode == 3 && byEncrAlgr == 7)
    {
        nEncryption = 9;  // 5或9
    }
    else  if(byAuthMode == 4 && byEncrAlgr == 7)
    {
        nEncryption = 10;  // 6或10
    }
    else  if(byAuthMode == 5 && byEncrAlgr == 7)
    {
        nEncryption = 11;  // 7或11
    }
    else if(byAuthMode == 7)  // 混合模式WPA-PSK|WPA2-PSK   3或5
    {
        if(byEncrAlgr == 5) {
            nEncryption = 7;  // 5或7
        }
        else if(byEncrAlgr == 6)
        {
            nEncryption = 11;  // 9或11
        }
        else if(byEncrAlgr == 7)
        {
            nEncryption = 11;  // 5或7或9或11
        }
        else
        {
            nEncryption = 12;
        }
    }
    else if(byAuthMode == 8)  // 混合模式WPA|WPA2    2或4
    {
        if(byEncrAlgr == 5) {
            nEncryption = 6;  // 4或6
        }
        else if(byEncrAlgr == 6)
        {
            nEncryption = 10;  // 8或10
        }
        else if(byEncrAlgr == 7)
        {
            nEncryption = 10;  // 4或6或8或10
        }
        else
        {
            nEncryption = 12;
        }
    }
    else if(byAuthMode == 9)  // 混合模式WPA|WPA-PSK  2或3
    {
        if(byEncrAlgr == 5) {
            nEncryption = 5;  // 4或5
        }
        else if(byEncrAlgr == 6)
        {
            nEncryption = 9;  // 8或9
        }
        else if(byEncrAlgr == 7)
        {
            nEncryption = 9;  // 4或5或8或9
        }
        else
        {
            nEncryption = 12;
        }
    }
    else if(byAuthMode == 10)  // 混合模式WPA2|WPA2-PSK  4或5
    {
        if(byEncrAlgr == 5) {
            nEncryption = 7;  // 6或7
        }
        else if(byEncrAlgr == 6)
        {
            nEncryption = 11;  // 10或11
        }
        else if(byEncrAlgr == 7)
        {
            nEncryption = 11;  // 6或7或10或11
        }
        else
        {
            nEncryption = 12;
        }
    }
    else if(byAuthMode == 11)  // 混合模式WPA|WPA-PSK|WPA2|WPA2-PSK  2或3或4或5
    {
        if(byEncrAlgr == 5) {
            nEncryption = 7;  // 4或5或6或7
        }
        else if(byEncrAlgr == 6)
        {
            nEncryption = 11;  // 8或9或10或11
        }
        else if(byEncrAlgr == 7)
        {
            nEncryption = 11;  // 4或5或6或7或8或9或10或11
        }
        else
        {
            nEncryption = 12;
        }
    } else {
        nEncryption = 12;
    }
    return nEncryption;
}
 
//MARK: Error
+ (NSString *)getErrorDescription:(unsigned int)erroCode
{
    NSString *strError = nil;
    switch (erroCode) {
        case NET_USER_FLASEPWD:
        case NET_LOGIN_ERROR_PASSWORD:
        case NET_LOGIN_ERROR_USER_OR_PASSOWRD:
            strError = @"login_user_or_pwd_error";
            break;
        case NET_LOGIN_ERROR_USER:
            strError = @"login_user_not_exist";
            break;
        case NET_LOGIN_ERROR_TIMEOUT:
            strError = @"login_timeout";
            break;
        case NET_LOGIN_ERROR_RELOGGIN:
            strError = @"login_user_logined";
            break;
        case NET_LOGIN_ERROR_LOCKED:
            strError = @"login_user_locked"; 
            break;
        case NET_LOGIN_ERROR_BLACKLIST:
            strError = @"login_user_in_black_list";
            break;
        case NET_LOGIN_ERROR_BUSY:
            strError = @"login_system_busy";
            break;
        case NET_LOGIN_ERROR_CONNECT:
            strError = @"login_timeout";
            break;
        case NET_LOGIN_ERROR_MAXCONNECT:
            strError = @"login_out_of_max_con";
            break;
        case NET_LOGIN_ERROR_NETWORK:
            strError = @"common_connect_failed";
            break;
        case NET_ERROR_TALK_RIGHTLESS:
        case NET_NOT_AUTHORIZED:
            strError = @"common_msg_no_permission";
            break;
        case NET_ERROR_UNSUPPORTED:
            strError = @"device_settings_wifi_not_support";
            break;
        case NET_RETURN_DATA_ERROR:
        case NET_NO_RECORD_FOUND:
            strError = @"playback_no_record";
            break;
        case 0xff:
            strError = @"device_settings_wifi_not_support";
            break;
        default:
        {
            return [NSString stringWithFormat:@"%@",@"common_connect_failed"];
        }
            break;
    }
    
    return strError;
}
 
//MARK: 设备重置密码-错误码
+ (NSString *)getDeviceRessetErrorDescription:(unsigned int)erroCode
{
    NSString *strError = nil;
    switch (erroCode) {
        case NET_ERROR_SECURITY_CODE:
            strError = @"device_pwd_reset_error_tip_input_safecode".lc_T;
            break;
        case NET_ERROR_SECURITY_CANNOT_RESET:
            strError = @"device_pwd_reset_error_tip_not_init".lc_T;
            break;
        case NET_ERROR_SECURITY_NOT_SUPPORT_CONTACT_MODE:
        case NET_ERROR_SECURITY_GET_CONTACT:
        case NET_ERROR_SECURITY_GET_QRCODE:
        case NET_ERROR_SECURITY_RESPONSE_TIMEOUT:
        case NET_ERROR_SECURITY_AUTHCODE_FORBIDDEN:
            strError = @"device_pwd_reset_error_tip_try_again".lc_T;
            break;
        default:
            strError = @"device_pwd_reset_error_tip_try_again".lc_T;
            break;
    }
    //2147483650 2147483650 0x80000000|1018
    NSLog(@"errorcode=%u 1=%u, 2=%u 3=%u 4=%u 5=%u 6=%u 7=%u ", erroCode,NET_ERROR_SECURITY_GENERATE_SAFE_CODE,NET_ERROR_SECURITY_CANNOT_RESET,NET_ERROR_SECURITY_NOT_SUPPORT_CONTACT_MODE,NET_ERROR_SECURITY_GET_CONTACT,NET_ERROR_SECURITY_GET_QRCODE,NET_ERROR_SECURITY_RESPONSE_TIMEOUT,NET_ERROR_SECURITY_AUTHCODE_FORBIDDEN);
    return strError;
}
 
 
+ (unsigned int)getLastError {
    return CLIENT_GetLastError();
}
 
#pragma mark - Production
+ (DHDeviceProductDefinition *)queryProductDefinitionInfo:(long)loginHandle {
    DH_PRODUCTION_DEFNITION stuProdution = {0};
    stuProdution.dwSize = sizeof(DH_PRODUCTION_DEFNITION);
    
    DHDeviceProductDefinition *definition = nil;
    BOOL isSuccess = CLIENT_QueryProductionDefinition(loginHandle, &stuProdution, 5*1000);
    NSLog(@"🍎🍎🍎 %@:: CLIENT_QueryProductionDefinition result:%d", NSStringFromClass([self class]), isSuccess);
    
    if (isSuccess) {
        definition = [DHDeviceProductDefinition new];
        definition.wlanScanConfigType = stuProdution.emWlanScanAndConfig;
        definition.hasPtz = stuProdution.bPtz;
    }
    
    return definition;
}
 
+ (DHDeviceUserInfoDefinition *)queryDeviceUserInfo:(long)loginHandle {
    
    USER_MANAGE_INFO_EX *userManagerInfo = new USER_MANAGE_INFO_EX;
    BOOL isSuccess = CLIENT_QueryUserInfoEx(loginHandle, userManagerInfo,5*1000);
    NSLog(@"🍎🍎🍎 %@:: CLIENT_QueryUserInfoEx result:%d", NSStringFromClass([self class]), isSuccess);
    
    DHDeviceUserInfoDefinition *definition = [DHDeviceUserInfoDefinition new];
    definition.hasPtzAuth = false;
    if (isSuccess) {
        for (int i = 0; i<userManagerInfo->dwRightNum; i++) {
            if ((strstr(userManagerInfo->rightList[i].name, "MPTZ") != NULL) ||
                (strstr(userManagerInfo->rightList[i].name, "AuthManuCtr") != NULL)) {
                definition.hasPtzAuth = true;
                break;
            }
        }
    }
    return definition;
}
 
+ (BOOL)querySupportWlanConfigV3:(long)loginHandle {
    DHDeviceProductDefinition *definition = [self queryProductDefinitionInfo: loginHandle];
    NSLog(@"🍎🍎🍎 %@:: querySupportWlanConfigV3, protocol type:%d", NSStringFromClass([self class]), definition.wlanScanConfigType);
 
    if (definition.wlanScanConfigType == EM_WLAN_SCAN_AND_CONFIG_V3) {
        return true;
    }
    
    return false;
}
 
+ (DHNetworkCardType)getNetworkCardType:(long)loginHandle
{
    DHDEV_NETINTERFACE_INFO *stuNetInterface = new DHDEV_NETINTERFACE_INFO[DH_MAX_NETINTERFACE_NUM];
    memset(stuNetInterface, 0, sizeof(DHDEV_NETINTERFACE_INFO) * DH_MAX_NETINTERFACE_NUM);
    for (int i = 0; i < DH_MAX_NETINTERFACE_NUM; ++i)
    {
        stuNetInterface[i].dwSize = sizeof(DHDEV_NETINTERFACE_INFO);
    }
    
    int retLen = 0;
    BOOL isSucceed = CLIENT_QueryDevState(loginHandle, DH_DEVSTATE_NETINTERFACE, (char *)stuNetInterface, sizeof(DHDEV_NETINTERFACE_INFO) * DH_MAX_NETINTERFACE_NUM, &retLen, 5000);
    
    DHNetworkCardType type = DHNetworkCardTypeEth2;
    
    if (isSucceed) {
        int validCount = MIN(DH_MAX_NETINTERFACE_NUM, retLen / (int)sizeof(DHDEV_NETINTERFACE_INFO));
        NSLog(@"🍎🍎🍎 %@:: GetInterface count:%d", NSStringFromClass([self class]), validCount);
        
        for (int i = 0; i < validCount; i++) {
            NSString *name = [NSString stringWithUTF8String:stuNetInterface[i].szName];
            NSLog(@"🍎🍎🍎 %@:: Network card name:%@", NSStringFromClass([self class]), name);
            if ([name.lowercaseString isEqualToString:@"wlan0"]) {
                type = DHNetworkCardTypeWlan0;
                //break;
            }
        }
    } else {
        NSLog(@"🍎🍎🍎 %@:: Get network card failed...:0x%x", NSStringFromClass([self class]), [self getLastError]);
        type = DHNetworkCardTypeUnknown;
    }
    
    return type;
}
 
//MARK: Device Password Reset
+ (DHDeviceResetPWDInfo *)queryPasswordResetType:(DHDeviceNetInfo *)device byPhoneIp:(NSString *)phoneIp {
    NET_IN_DESCRIPTION_FOR_RESET_PWD inDescription = {0};
    NET_OUT_DESCRIPTION_FOR_RESET_PWD outDescription = {0};
    outDescription.dwSize = sizeof(NET_OUT_DESCRIPTION_FOR_RESET_PWD);
    outDescription.pQrCode = new char[1024];
    outDescription.nQrCodeLen = 1024;
    memset(outDescription.pQrCode, 0, 1024);
    
    //使用safe_strcpy需要判断nil
    //safe_strcpy(inDescription.szMac, [device.mac UTF8String]);
    NSString *userName = @"admin";
    memcpy(inDescription.szMac, [device.mac UTF8String], device.mac.length);
    memcpy(inDescription.szUserName, [userName UTF8String], userName.length);
    inDescription.dwSize = sizeof(NET_IN_DESCRIPTION_FOR_RESET_PWD);
    inDescription.byInitStatus = device.initStatus;
    
    BOOL isSucceed = CLIENT_GetDescriptionForResetPwd(&inDescription, &outDescription, 5*1000, (char *)[phoneIp UTF8String]);
 
    DHDeviceResetPWDInfo *resetInfo;
    //查询出的实际字节大于1024时,需要重新处理
    if (isSucceed && outDescription.nQrCodeLenRet > 1024) {
        outDescription.pQrCode = new char[outDescription.nQrCodeLenRet];
        memset(outDescription.pQrCode, 0, outDescription.nQrCodeLenRet);
        isSucceed = CLIENT_GetDescriptionForResetPwd(&inDescription, &outDescription, 5*1000, (char *)[phoneIp UTF8String]);
    }
    
    if (isSucceed) {
        //处理result
        resetInfo = [DHDeviceResetPWDInfo new];
        resetInfo.devicePwdResetWay = device.devicePwdResetWay;
        resetInfo.presetPhone = [self private_stringWithUTF8:outDescription.szCellPhone];
        resetInfo.presetEmail = [self private_stringWithUTF8:outDescription.szMailAddr];
        resetInfo.qrCode = [self private_stringWithUTF8:outDescription.pQrCode];
        
    } else {
        long lastError = CLIENT_GetLastError();
        NSLog(@"NetSDKInteface:: CLIENT_GetDescriptionForResetPwd failed with lastError:...0x%lx", lastError);
        
        /*
         #define NET_ERROR_SECURITY_ERROR_SUPPORT_GUI           _EC(1104)           // 校验请求安全码失败,可使用本地GUI方式重置密码
         #define NET_ERROR_SECURITY_ERROR_SUPPORT_MULT          _EC(1105)           // 校验请求安全码失败,可使用大华渠道APP、configtool工具重置密码
         #define NET_ERROR_SECURITY_ERROR_SUPPORT_UNIQUE        _EC(1106)           // 校验请求安全码失败,可登陆Web页面重置密码
         
         NET_ERROR_SECURITY_GENERATE_SAFE_CODE                  _EC(1108)           // 调用大华加密库产生安全码失败
         NET_ERROR_SECURITY_GET_CONTACT                         _EC(1109)           // 获取联系方式失败
         NET_ERROR_SECURITY_GET_QRCODE                          _EC(1110)           // 获取重置密码的二维码信息失败
         NET_ERROR_SECURITY_CANNOT_RESET                        _EC(1111)           // 设备未初始化,无法重置
         NET_ERROR_SECURITY_NOT_SUPPORT_CONTACT_MODE            _EC(1112)           // 不支持设置该种联系方式,如只支持设置手机号,却请求设置邮箱
         NET_ERROR_SECURITY_RESPONSE_TIMEOUT                    _EC(1113)           // 对端响应超时
         NET_ERROR_SECURITY_AUTHCODE_FORBIDDEN                  _EC(1114)           // 尝试校验AuthCode次数过多,禁止校验
 
         */
        //_EC(x) (0x80000000|x)
        resetInfo = [DHDeviceResetPWDInfo new];
        if (lastError == NET_ERROR_SECURITY_ERROR_SUPPORT_GUI) {
            resetInfo.errorType = DHDevicePasswordResetErrorGUI;
        } else if (lastError == NET_ERROR_SECURITY_ERROR_SUPPORT_MULT) {
            resetInfo.errorType = DHDevicePasswordResetErrorMulti;
        } else if (lastError == NET_ERROR_SECURITY_ERROR_SUPPORT_UNIQUE) {
            resetInfo.errorType = DHDevicePasswordResetErrorWeb;
        } else {
            resetInfo.errorType = DHDevicePasswordResetErrorOther;
        }
    }
    
    NSLog(@"🍎🍎🍎 %@:: CLIENT_GetDescriptionForResetPwd: Result %d, phone:%s, email:%s, qrcode:%s, newVersion:%d",
          NSStringFromClass([self class]), isSucceed,  outDescription.szCellPhone, outDescription.szMailAddr, outDescription.pQrCode, resetInfo.isNewVersion);
    
    delete outDescription.pQrCode;
    outDescription.pQrCode = nil;
    
    return resetInfo;
}
 
+ (DHDevicePWDResetInfo *)resetPassword:(NSString *)password
               device:(DHDeviceNetInfo *)device
         securityCode:(NSString *)securityCode
              contact:(NSString *)contact
          useAsPreset:(BOOL)useAsPreset
            byPhoneIp:(NSString *)phoneIp {
    NSString *userName = @"admin";
    NET_IN_RESET_PWD inReset = {0};
    inReset.dwSize = sizeof(NET_IN_RESET_PWD);
    memcpy(inReset.szMac, [device.mac UTF8String], device.mac.length);
    memcpy(inReset.szUserName, [userName UTF8String], userName.length);
    memcpy(inReset.szPwd, [password UTF8String], password.length);
    memcpy(inReset.szSecurity, [securityCode UTF8String], securityCode.length);
    memcpy(inReset.szContact, [contact UTF8String], contact.length);
    inReset.byInitStaus = device.initStatus;
    inReset.byPwdResetWay = device.byPWDResetWay;
    inReset.bSetContact = useAsPreset;
    
    NET_OUT_RESET_PWD outReset = {0};
    outReset.dwSize = sizeof(NET_OUT_RESET_PWD);
    
    BOOL result = CLIENT_ResetPwd(&inReset, &outReset, 10*1000, (char *)[phoneIp UTF8String]);
    
    NSLog(@"🍎🍎🍎 %@:: CLIENT_ResetPwd: Result %d, dwSize:%u, byInitStaus:%c, byPwdResetWay:%c, bSetContact:%d",
          NSStringFromClass([self class]), result,  inReset.dwSize, inReset.byInitStaus, inReset.byPwdResetWay, inReset.bSetContact);
    
    DHDevicePWDResetInfo *info = [[DHDevicePWDResetInfo alloc]init];
    info.isSuccess = result;
    if (!result) {
        unsigned int lastError = CLIENT_GetLastError();
        info.errorStr = [DHNetSDKInterface getDeviceRessetErrorDescription:lastError];
        NSLog(@"NetSDKInteface:: CLIENT_GetDescriptionForResetPwd failed with lastError:...0x%x", lastError);
    }
    
    return info;
}
 
//MARK:Private
+ (NSString *)private_stringWithUTF8:(char *)utf8 {
    if (utf8 == NULL) {
        return @"";
    }
    
    return [NSString stringWithUTF8String:utf8];
}
 
//MARK: Callback
void CALLBACK netSearchResultEx(LLONG lSearchHandle, DEVICE_NET_INFO_EX2 *pDevNetInfo, void *pUserData)
{
    DHDeviceNetInfo *netInfo = [[DHDeviceNetInfo alloc] initWithNetInfo: &(pDevNetInfo->stuDevInfo)];
    netInfo.isVaild = YES;
    //NSLog(@"28614-find device: %@ - %@ - %d- %@ ", netInfo.deviceType, netInfo.serialNo, netInfo.ipVersion, netInfo.ip);
    if(netInfo.ipVersion != 4 ){
        return ;
    }
 
    if ([DHNetSDKInterface sharedInstance].searchCallback) {
        [DHNetSDKInterface sharedInstance].searchCallback(netInfo);
    }
}
 
void CALLBACK netSearchResult(DEVICE_NET_INFO_EX *pDevNetInfo, void *pUserData)
{
    DHDeviceNetInfo *netInfo = [[DHDeviceNetInfo alloc] initWithNetInfo:pDevNetInfo];
    netInfo.isVaild = YES;
    //NSLog(@"28614-find device: %@ - %@", netInfo.deviceType, netInfo.serialNo);
    if(netInfo.ipVersion != 4 ){
        return ;
    }
 
    if ([DHNetSDKInterface sharedInstance].searchCallback) {
        [DHNetSDKInterface sharedInstance].searchCallback(netInfo);
    }
}
 
void CALLBACK fDisconnect(LLONG lLoginID, char *pchDVRIP, LONG nDVRPort, LDWORD dwUser) {
    if ([DHNetSDKInterface sharedInstance].disconnectCallback) {
        NSString *ip = @"";
        if (pchDVRIP != nil) {
            ip = [NSString stringWithUTF8String:pchDVRIP];
        }
        
        [DHNetSDKInterface sharedInstance].disconnectCallback(lLoginID, ip, nDVRPort);
        // 发送断开连接通知
        [[NSNotificationCenter defaultCenter] postNotificationName:@"LCNotificationLocalNetworkDisconnect" object:nil userInfo:@{@"IP":ip}];
    }
}
 
@end
 
 
//MARK: Safe String Copy
void safe_strcpy(char *__dst, const char *__src) {
    if (__src) {
        strcpy(__dst, __src);
    } else {
        NSLog(@"🍎🍎🍎 %s:: __src can't be nil...", __FUNCTION__ );
    }
}