File tree 1 file changed +1
-0
lines changed
src/libraries/System.Net.Quic/src/System/Net/Quic/Internal 1 file changed +1
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ static Exception GetExceptionInternal(int status, string? message)
68
68
if ( status == QUIC_STATUS_ADDRESS_IN_USE ) return new QuicException ( QuicError . AddressInUse , null , SR . net_quic_address_in_use ) ;
69
69
if ( status == QUIC_STATUS_UNREACHABLE ) return new QuicException ( QuicError . HostUnreachable , null , SR . net_quic_host_unreachable ) ;
70
70
if ( status == QUIC_STATUS_CONNECTION_REFUSED ) return new QuicException ( QuicError . ConnectionRefused , null , SR . net_quic_connection_refused ) ;
71
+ if ( status == QUIC_STATUS_CONNECTION_TIMEOUT ) return new QuicException ( QuicError . ConnectionTimeout , null , SR . net_quic_timeout ) ;
71
72
if ( status == QUIC_STATUS_VER_NEG_ERROR ) return new QuicException ( QuicError . VersionNegotiationError , null , SR . net_quic_ver_neg_error ) ;
72
73
if ( status == QUIC_STATUS_INVALID_ADDRESS ) return new QuicException ( QuicError . InvalidAddress , null , SR . net_quic_invalid_address ) ;
73
74
if ( status == QUIC_STATUS_CONNECTION_IDLE ) return new QuicException ( QuicError . ConnectionIdle , null , SR . net_quic_connection_idle ) ;
You can’t perform that action at this time.
0 commit comments