Skip to content

Commit 0b7fbe7

Browse files
committed
修复 quic监听异常(Fxxk ms)
1 parent b1e7b83 commit 0b7fbe7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Core/Services/DeviceCommunication/QuicLocalDataListener.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public async Task<bool> StartAsync(CancellationToken cancellationToken = default
7373
{
7474
//https://source.dot.net/#System.Net.Quic/System/Net/Quic/QuicListener.cs,152
7575
//Using the Unspecified family makes MsQuic handle connections from all IP addresses.
76-
ListenEndPoint = new IPEndPoint(IPAddress.None, 0),
76+
ListenEndPoint = new IPEndPoint(IPAddress.IPv6Any, 0),
7777
ApplicationProtocols = [ApplicationProtocol],
7878
ConnectionOptionsCallback = (connection, _, _) =>
7979
{

0 commit comments

Comments
 (0)