fix(UML-1462): Поправлен размер поля данных UDP пакета

This commit is contained in:
algin 2023-07-14 15:24:48 +03:00
parent 4e3a2dad98
commit 16c5500441

View File

@ -66,7 +66,7 @@ int32_t free_rtos::EthUdpServer::Process(uint8_t * p_data, uint32_t len)
memcpy(&src_ip, p_ip_hdr->ip_src, ETH_IP_ADDR_LEN);
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> udp
client->put_data(src_ip, p_data + sizeof(TUdpHeader), len - sizeof(TUdpHeader));
client->put_data(src_ip, p_data + sizeof(TUdpHeader), hdr->Length - sizeof(TUdpHeader));
return 0;
}