You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[Insights] Fixed StoreClient's read trace (FStoreCborClient::ReadTrace) incorectly using socket's local_endpoint insted of remote_endpoint.
#rb trivial #fyi Johan.Berg #preflight skip [CL 25170298 by ionut matasaru in ue5-main branch]
This commit is contained in:
@@ -323,7 +323,7 @@ FTraceDataStream* FStoreCborClient::ReadTrace(uint32 Id)
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
asio::ip::address ServerAddr = Socket.local_endpoint().address();
|
||||
asio::ip::address ServerAddr = Socket.remote_endpoint().address();
|
||||
asio::ip::tcp::endpoint Endpoint(ServerAddr, uint16(SenderPort));
|
||||
|
||||
asio::error_code ErrorCode;
|
||||
|
||||
Reference in New Issue
Block a user