14 references to QuicAddrToIPEndPoint
System.Net.Quic (14)
System\Net\Quic\Internal\MsQuicExtensions.cs (6)
12=> $"{{ {nameof(QuicVersion)} = {QuicVersion}, {nameof(LocalAddress)} = {MsQuicHelpers.QuicAddrToIPEndPoint(LocalAddress)}, {nameof(RemoteAddress)} = {MsQuicHelpers.QuicAddrToIPEndPoint(RemoteAddress)} }}"; 21=> $"{{ {nameof(NEW_CONNECTION.Info)} = {{ {nameof(QUIC_NEW_CONNECTION_INFO.QuicVersion)} = {NEW_CONNECTION.Info->QuicVersion}, {nameof(QUIC_NEW_CONNECTION_INFO.LocalAddress)} = {MsQuicHelpers.QuicAddrToIPEndPoint(NEW_CONNECTION.Info->LocalAddress)}, {nameof(QUIC_NEW_CONNECTION_INFO.RemoteAddress)} = {MsQuicHelpers.QuicAddrToIPEndPoint(NEW_CONNECTION.Info->RemoteAddress)} }}, {nameof(NEW_CONNECTION.Connection)} = 0x{(IntPtr)NEW_CONNECTION.Connection:X11} }}", 40=> $"{{ {nameof(LOCAL_ADDRESS_CHANGED.Address)} = {MsQuicHelpers.QuicAddrToIPEndPoint(LOCAL_ADDRESS_CHANGED.Address)} }}", 42=> $"{{ {nameof(PEER_ADDRESS_CHANGED.Address)} = {MsQuicHelpers.QuicAddrToIPEndPoint(PEER_ADDRESS_CHANGED.Address)} }}",
System\Net\Quic\QuicConnection.cs (6)
368_remoteEndPoint = MsQuicHelpers.QuicAddrToIPEndPoint(info->RemoteAddress); 369_localEndPoint = MsQuicHelpers.QuicAddrToIPEndPoint(info->LocalAddress); 642_remoteEndPoint = MsQuicHelpers.QuicAddrToIPEndPoint(&remoteAddress); 645_localEndPoint = MsQuicHelpers.QuicAddrToIPEndPoint(&localAddress); 687_localEndPoint = MsQuicHelpers.QuicAddrToIPEndPoint(data.Address); 692_remoteEndPoint = MsQuicHelpers.QuicAddrToIPEndPoint(data.Address);
System\Net\Quic\QuicListener.cs (2)
164LocalEndPoint = MsQuicHelpers.QuicAddrToIPEndPoint(&address, options.ListenEndPoint.AddressFamily); 330NetEventSource.Info(this, $"{this} Refusing connection from {MsQuicHelpers.QuicAddrToIPEndPoint(data.Info->RemoteAddress)} due to backlog limit");