@@ -64,9 +64,16 @@ public static Uri[] GetEchoServerList()
64
64
if ( PlatformDetection . IsFirefox )
65
65
{
66
66
// https://github.com/dotnet/runtime/issues/101115
67
- return [ RemoteEchoServer ] ;
67
+ // [ActiveIssue("https://github.com/dotnet/runtime/issues/110578)]
68
+ // return [RemoteEchoServer];
69
+ return [ ] ;
68
70
}
69
- return [ RemoteEchoServer , SecureRemoteEchoServer , Http2RemoteEchoServer ] ;
71
+ return [
72
+ // [ActiveIssue("https://github.com/dotnet/runtime/issues/110578)]
73
+ // RemoteEchoServer,
74
+ SecureRemoteEchoServer ,
75
+ Http2RemoteEchoServer
76
+ ] ;
70
77
}
71
78
72
79
public static readonly Uri RemoteVerifyUploadServer = new Uri ( "http://" + Host + "/" + VerifyUploadHandler ) ;
@@ -82,8 +89,20 @@ public static Uri[] GetEchoServerList()
82
89
public static Uri RemoteLoopServer => new Uri ( "ws://" + RemoteLoopHost + "/" + RemoteLoopHandler ) ;
83
90
84
91
public static readonly object [ ] [ ] EchoServers = GetEchoServerList ( ) . Select ( x => new object [ ] { x } ) . ToArray ( ) ;
85
- public static readonly object [ ] [ ] VerifyUploadServers = { new object [ ] { RemoteVerifyUploadServer } , new object [ ] { SecureRemoteVerifyUploadServer } , new object [ ] { Http2RemoteVerifyUploadServer } } ;
86
- public static readonly object [ ] [ ] CompressedServers = { new object [ ] { RemoteDeflateServer } , new object [ ] { RemoteGZipServer } , new object [ ] { Http2RemoteDeflateServer } , new object [ ] { Http2RemoteGZipServer } } ;
92
+ public static readonly object [ ] [ ] VerifyUploadServers = {
93
+ // [ActiveIssue("https://github.com/dotnet/runtime/issues/110578)]
94
+ // new object[] { RemoteVerifyUploadServer },
95
+ new object [ ] { SecureRemoteVerifyUploadServer } ,
96
+ new object [ ] { Http2RemoteVerifyUploadServer }
97
+ } ;
98
+
99
+ public static readonly object [ ] [ ] CompressedServers = {
100
+ // [ActiveIssue("https://github.com/dotnet/runtime/issues/110578)]
101
+ // new object[] { RemoteDeflateServer },
102
+ new object [ ] { RemoteGZipServer } ,
103
+ new object [ ] { Http2RemoteDeflateServer } ,
104
+ new object [ ] { Http2RemoteGZipServer }
105
+ } ;
87
106
88
107
public static readonly object [ ] [ ] Http2Servers = { new object [ ] { new Uri ( "https://" + Http2Host ) } } ;
89
108
public static readonly object [ ] [ ] Http2NoPushServers = { new object [ ] { new Uri ( "https://" + Http2NoPushHost ) } } ;
@@ -97,9 +116,17 @@ public static IEnumerable<RemoteServer> GetRemoteServers()
97
116
if ( PlatformDetection . IsFirefox )
98
117
{
99
118
// https://github.com/dotnet/runtime/issues/101115
100
- return new RemoteServer [ ] { RemoteHttp11Server } ;
119
+ // [ActiveIssue("https://github.com/dotnet/runtime/issues/110578)]
120
+ // return new RemoteServer[] { RemoteHttp11Server };
121
+ return [ ] ;
101
122
}
102
- return new RemoteServer [ ] { RemoteHttp11Server , RemoteSecureHttp11Server , RemoteHttp2Server } ;
123
+ return new RemoteServer [ ]
124
+ {
125
+ // [ActiveIssue("https://github.com/dotnet/runtime/issues/110578)]
126
+ // RemoteHttp11Server,
127
+ RemoteSecureHttp11Server ,
128
+ RemoteHttp2Server
129
+ } ;
103
130
}
104
131
105
132
public static readonly IEnumerable < object [ ] > RemoteServersMemberData = GetRemoteServers ( ) . Select ( s => new object [ ] { s } ) ;
0 commit comments