Skip to content

Commit

Permalink
删除开源治理
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleychen committed Sep 10, 2024
1 parent c8f00a6 commit 13bf4b2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@

#import "TIoTCoreAddDevice.h"

#define APIP @"192.168.4.1"
#define APPort 8266

@interface TIoTSoftapWaitVC ()<GCDAsyncUdpSocketDelegate,TIoTCoreAddDeviceDelegate>
@property (strong, nonatomic) GCDAsyncUdpSocket *socket;
@property (strong, nonatomic) dispatch_queue_t delegateQueue;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ - (void)setupUI {
self.wifiPasswordString = @"";
self.tokenString = @"";
self.portString = @"7838";
self.addressIDString = @"239.0.0.255";
self.addressIDString = @"";
}

- (void)initInformation {
Expand Down
2 changes: 1 addition & 1 deletion Source/SDK/LinkCore/QCDeviceCenter/TIoTCoreAddDevice.m
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ - (instancetype)initWithPort:(NSString *)port multicastGroupOrHost:(NSString *)a
self = [super init];
if (self) {
self.portString = port?:@"7838"; //需要更改接入端口号
self.addressString = address?:@"239.0.0.255"; //需要更改接入IP
self.addressString = address?:@""; //需要更改接入IP
}
return self;
}
Expand Down

0 comments on commit 13bf4b2

Please sign in to comment.