fix:调整新的中继协议中的上报签名逻辑
This commit is contained in:
parent
3d94a65418
commit
12c6bbe160
@ -68,4 +68,15 @@ class StartChartApi extends BaseProvider {
|
|||||||
);
|
);
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 星图--解析对端信息
|
||||||
|
Future<void> analyzeInformationOtherEnd({
|
||||||
|
required String peerId,
|
||||||
|
}) async {
|
||||||
|
final response = await get(
|
||||||
|
_startChartHost + analyzeInformationOtherEndURL.toUrl + '?id=$peerId',
|
||||||
|
isUnShowLoading: true,
|
||||||
|
isUserBaseUrl: false,
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -20,7 +20,7 @@ class CommandUDPReciverManager {
|
|||||||
if (dataSize < 4) {
|
if (dataSize < 4) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// AppLog.log('appReceiveUDPData:$data');
|
AppLog.log('appReceiveUDPData:$data');
|
||||||
|
|
||||||
final Uint8List data1 = Uint8List.fromList(data);
|
final Uint8List data1 = Uint8List.fromList(data);
|
||||||
if (data1.length == 1) {
|
if (data1.length == 1) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user