Skip to content

Commit

Permalink
Fixed the issue that GetRemoteEndPoint did not use the remoteEndPoint…
Browse files Browse the repository at this point in the history
… parameter.
  • Loading branch information
xljiulang committed Dec 4, 2024
1 parent b708344 commit 13e8190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/MQTTnet.AspnetCore/Internal/MqttChannel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private static bool AllowPacketFragmentation(IHttpContextFeature? _httpContextFe
}
}

return null;
return remoteEndPoint;
}

private static bool IsTlsConnection(IHttpContextFeature? _httpContextFeature, ITlsConnectionFeature? tlsConnectionFeature)
Expand Down

0 comments on commit 13e8190

Please sign in to comment.