feat:修改

This commit is contained in:
surenjun 2025-03-05 10:16:25 +08:00
parent 9806ce8664
commit 526faa97df

View File

@ -113,10 +113,10 @@ function handReceiveMessage(client: socket.TCPSocket, sendData, receiveData):RES
}else{ }else{
const decoder = util.TextDecoder.create('utf-8'); const decoder = util.TextDecoder.create('utf-8');
const messageLength = bytesToDecimal([receiveData[9],receiveData[10]]); const messageLength = bytesToDecimal([receiveData[9],receiveData[10]]);
const markLength = receiveData[11]; const markLength = receiveData[11].buffer;
const markContent = decoder.decodeWithStream(receiveData.slice(12, 12 + markLength )); const markContent = decoder.decodeWithStream(receiveData.slice(12, 12 + markLength ));
console.info(TAG, 'markContent=>' + markContent) console.info(TAG, 'markContent=>' + markContent)
const tipLength = receiveData[13]; const tipLength = receiveData[13].buffer;
const messageContent = decoder.decodeWithStream(receiveData.slice(13 + markLength, 13 + markLength + tipLength)); const messageContent = decoder.decodeWithStream(receiveData.slice(13 + markLength, 13 + markLength + tipLength));
console.info(TAG, 'messageContent=>' + messageContent) console.info(TAG, 'messageContent=>' + messageContent)
return { return {