├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── Http2.Katana.sln ├── Packages.dgml ├── README.md ├── Settings.StyleCop ├── packages ├── Owin.1.0 │ ├── Owin.1.0.nupkg │ └── lib │ │ └── net40 │ │ └── Owin.dll └── zlib.net.1.0.4.0 │ ├── lib │ └── zlib.net.dll │ └── zlib.net.1.0.4.0.nupkg ├── res ├── certificate.pfx ├── client.pfx ├── cloudapp.pfx └── server.pfx ├── samples ├── Http2.Owin.BingProxy.Sample │ ├── App.config │ ├── Http2.Owin.BingProxy.Sample.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Startup.cs │ └── packages.config ├── Http2.Owin.Service.Sample │ ├── App.config │ ├── Http2.Owin.Service.Sample.csproj │ ├── Http2ServerInstaller.Designer.cs │ ├── Http2ServerInstaller.cs │ ├── Http2ServerService.Designer.cs │ ├── Http2ServerService.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Startup.cs │ ├── packages.config │ └── root │ │ ├── 5mbTest.txt │ │ ├── Chalkboard HTML5 Benchmark.htm │ │ ├── Chalkboard HTML5 Benchmark_files │ │ ├── Benchmark.js │ │ ├── Chalkboard.css │ │ ├── Chalkboard.svg │ │ ├── EmptyChalkboard.svg │ │ ├── FeatureDetectAudio.js │ │ ├── Logo.png │ │ ├── ReturnAndShareControls.css │ │ ├── ReturnAndShareControls.js │ │ └── TestDriveCommon.js │ │ ├── Lite Brite Browser Performance Benchmark.htm │ │ ├── Lite Brite Browser Performance Benchmark_files │ │ ├── BaseStyles.css │ │ ├── FeatureDetection.js │ │ ├── IE-logo.png │ │ ├── ImageManager.js │ │ ├── Keyboard.js │ │ ├── LBLogoVert.png │ │ ├── LiteBrite.css │ │ ├── LiteBrite.js │ │ ├── ReturnAndShareControls.css │ │ ├── ReturnAndShareControls.js │ │ ├── Support.js │ │ ├── TestDriveCommon.js │ │ └── Timer.js │ │ ├── LookAround.htm │ │ ├── LookAround_files │ │ ├── BaseStyles.css │ │ ├── Demo.css │ │ ├── DemoTemplate.css │ │ ├── FavIcon.ico │ │ ├── ReturnAndShareControls.css │ │ ├── ReturnAndShareControls.js │ │ ├── ReturnButtonImageStrip.png │ │ ├── TestDriveCommon.js │ │ ├── ie-logo.png │ │ ├── instructions.png │ │ ├── loading.gif │ │ ├── negx.jpg │ │ ├── negy.jpg │ │ ├── negz.jpg │ │ ├── posx.jpg │ │ ├── posy.jpg │ │ ├── posz.jpg │ │ └── three.min.js │ │ ├── index.html │ │ └── simpleTest.txt └── Http2.Owin.StaticFiles.Sample │ ├── App.config │ ├── Http2.Owin.StaticFiles.Sample.csproj │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Startup.cs │ ├── packages.config │ └── root │ ├── 5mbTest.txt │ ├── Chalkboard HTML5 Benchmark.htm │ ├── Chalkboard HTML5 Benchmark_files │ ├── Benchmark.js │ ├── Chalkboard.css │ ├── Chalkboard.svg │ ├── EmptyChalkboard.svg │ ├── FeatureDetectAudio.js │ ├── Logo.png │ ├── ReturnAndShareControls.css │ ├── ReturnAndShareControls.js │ └── TestDriveCommon.js │ ├── Lite Brite Browser Performance Benchmark.htm │ ├── Lite Brite Browser Performance Benchmark_files │ ├── BaseStyles.css │ ├── FeatureDetection.js │ ├── IE-logo.png │ ├── ImageManager.js │ ├── Keyboard.js │ ├── LBLogoVert.png │ ├── LiteBrite.css │ ├── LiteBrite.js │ ├── ReturnAndShareControls.css │ ├── ReturnAndShareControls.js │ ├── Support.js │ ├── TestDriveCommon.js │ └── Timer.js │ ├── LookAround.htm │ ├── LookAround_files │ ├── BaseStyles.css │ ├── Demo.css │ ├── DemoTemplate.css │ ├── FavIcon.ico │ ├── ReturnAndShareControls.css │ ├── ReturnAndShareControls.js │ ├── ReturnButtonImageStrip.png │ ├── TestDriveCommon.js │ ├── ie-logo.png │ ├── instructions.png │ ├── loading.gif │ ├── negx.jpg │ ├── negy.jpg │ ├── negz.jpg │ ├── posx.jpg │ ├── posy.jpg │ ├── posz.jpg │ └── three.min.js │ ├── index.html │ └── simpleTest.txt ├── src ├── Libraries │ ├── Microsoft.Http2.Protocol │ │ ├── CommonHeaders.cs │ │ ├── Compression │ │ │ ├── HeadersDeltaCompression │ │ │ │ ├── CompressionProcessor │ │ │ │ │ ├── CompressionProcStaticTable.cs │ │ │ │ │ └── CompressionProcessor.cs │ │ │ │ ├── Indexation.cs │ │ │ │ ├── IndexationType.cs │ │ │ │ └── UVarIntPrefix.cs │ │ │ ├── HuffmanCompression │ │ │ │ ├── BinaryConverter.cs │ │ │ │ ├── BitTree.cs │ │ │ │ ├── HuffmanCodesTable │ │ │ │ │ ├── HuffmanCodes.cs │ │ │ │ │ └── HuffmanCodesTable.cs │ │ │ │ └── HuffmanCompressor.cs │ │ │ ├── IAdditionalHeaderInfo.cs │ │ │ └── ICompressionProcessor.cs │ │ ├── Constants.cs │ │ ├── EventArgs │ │ │ ├── DataFrameSentEventArgs.cs │ │ │ ├── FrameReceivedEventArgs.cs │ │ │ ├── FrameSentEventArgs.cs │ │ │ ├── RequestSentEventArgs.cs │ │ │ ├── SettingsSentEventArgs.cs │ │ │ └── StreamClosedEventArgs.cs │ │ ├── Exceptions │ │ │ ├── CompressionError.cs │ │ │ ├── Http2StreamNotFoundException.cs │ │ │ ├── InvalidHeaderException.cs │ │ │ ├── MaxConcurrentStreamsLimitException.cs │ │ │ └── ProtocolError.cs │ │ ├── Extensions │ │ │ ├── DictionaryExtenstions.cs │ │ │ ├── Int32Extensions.cs │ │ │ └── MathEx.cs │ │ ├── FlowControl │ │ │ ├── FlowControlManager.cs │ │ │ └── FlowControlOptions.cs │ │ ├── ForbiddenHeaders.cs │ │ ├── Framing │ │ │ ├── ContinuationFrame.cs │ │ │ ├── DataFrame.cs │ │ │ ├── Frame.cs │ │ │ ├── FrameFlags.cs │ │ │ ├── FrameHelper.cs │ │ │ ├── FrameReader.cs │ │ │ ├── FrameType.cs │ │ │ ├── GoAwayFrame.cs │ │ │ ├── GoAwayStatusCode.cs │ │ │ ├── HeadersFrame.cs │ │ │ ├── HeadersSequence.cs │ │ │ ├── IEndSegmentFrame.cs │ │ │ ├── IEndStreamFrame.cs │ │ │ ├── IHeadersFrame.cs │ │ │ ├── IPaddingFrame.cs │ │ │ ├── PingFrame.cs │ │ │ ├── PriorityFrame.cs │ │ │ ├── PushPromiseFrame.cs │ │ │ ├── ResetStatusCode.cs │ │ │ ├── RstStreamFrame.cs │ │ │ ├── SettingsFlags.cs │ │ │ ├── SettingsFrame.cs │ │ │ ├── SettingsIds.cs │ │ │ ├── SettingsPair.cs │ │ │ └── WindowUpdateFrame.cs │ │ ├── GlobalSuppressions.cs │ │ ├── HeadersList.cs │ │ ├── HeadersSequenceList.cs │ │ ├── Http2MessageHandler.cs │ │ ├── Http2Session │ │ │ ├── Http2SessionDesc.cs │ │ │ └── Http2SessionFrameHandling.cs │ │ ├── Http2Stream.cs │ │ ├── IO │ │ │ ├── IPriorityItem.cs │ │ │ ├── IQueue.cs │ │ │ ├── IQueueItem.cs │ │ │ ├── PriorityQueue.cs │ │ │ ├── PriorityQueueEntry.cs │ │ │ ├── QueueEntry.cs │ │ │ ├── QueueWrapper.cs │ │ │ ├── ResponseStream.cs │ │ │ ├── StreamBuffer.cs │ │ │ └── WriteQueue.cs │ │ ├── Microsoft.Http2.Protocol.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Protocols.cs │ │ ├── StatusCode.cs │ │ ├── StreamDictionary.cs │ │ ├── StreamState.cs │ │ ├── Utils │ │ │ ├── Http2Logger.cs │ │ │ └── Http2LoggerState.cs │ │ ├── Verbs.cs │ │ └── packages.config │ └── OpenSsl │ │ ├── ManagedOpenSsl │ │ ├── App.config │ │ ├── ConnectionEnd.cs │ │ ├── Core │ │ │ ├── Asn1DateTime.cs │ │ │ ├── Asn1Integer.cs │ │ │ ├── Asn1Object.cs │ │ │ ├── Asn1String.cs │ │ │ ├── BIO.cs │ │ │ ├── Base.cs │ │ │ ├── BigNumber.cs │ │ │ ├── Crypto.cs │ │ │ ├── MemoryTracker.cs │ │ │ ├── Native.cs │ │ │ ├── Objects.cs │ │ │ ├── OpenSslException.cs │ │ │ ├── Password.cs │ │ │ ├── Random.cs │ │ │ ├── Stack.cs │ │ │ └── Version.cs │ │ ├── Crypto │ │ │ ├── Cipher.cs │ │ │ ├── CryptoKey.cs │ │ │ ├── DH.cs │ │ │ ├── DSA.cs │ │ │ ├── EC │ │ │ │ ├── BuiltinCurve.cs │ │ │ │ ├── DSASignature.cs │ │ │ │ ├── Group.cs │ │ │ │ ├── Key.cs │ │ │ │ ├── Method.cs │ │ │ │ └── Point.cs │ │ │ ├── HMAC.cs │ │ │ ├── MessageDigest.cs │ │ │ └── RSA.cs │ │ ├── Exceptions │ │ │ └── AlpnException.cs │ │ ├── Extensions │ │ │ ├── Alpn.cs │ │ │ ├── Errors.cs │ │ │ └── SNI.cs │ │ ├── GlobalSuppressions.cs │ │ ├── OpenSslWrapper.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Protocols.cs │ │ ├── SSL │ │ │ ├── Enums.cs │ │ │ ├── SSL_CTX.cs │ │ │ ├── Ssl.cs │ │ │ ├── SslCipher.cs │ │ │ ├── SslContext.cs │ │ │ ├── SslMethod.cs │ │ │ ├── SslStream.cs │ │ │ ├── SslStreamBase.cs │ │ │ ├── SslStreamClient.cs │ │ │ └── SslStreamServer.cs │ │ └── X509 │ │ │ ├── Configuration.cs │ │ │ ├── Identity.cs │ │ │ ├── PKCS12.cs │ │ │ ├── PKCS7.cs │ │ │ ├── VerifyResult.cs │ │ │ ├── X509Certificate.cs │ │ │ ├── X509CertificateAuthority.cs │ │ │ ├── X509CertificateInfo.cs │ │ │ ├── X509Chain.cs │ │ │ ├── X509Extension.cs │ │ │ ├── X509Name.cs │ │ │ ├── X509Object.cs │ │ │ ├── X509Request.cs │ │ │ ├── X509Store.cs │ │ │ └── X509StoreContext.cs │ │ └── native │ │ └── windows │ │ └── x86 │ │ ├── libeay32.dll │ │ ├── openssl.exe │ │ └── ssleay32.dll ├── Microsoft.Http2.Owin.Middleware │ ├── Http2Extensions.cs │ ├── Http2Middleware.cs │ ├── Microsoft.Http2.Owin.Middleware.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Microsoft.Http2.Owin.Server │ ├── Adapters │ │ ├── Http11Helper.cs │ │ ├── Http11OwinMessageHandler.cs │ │ ├── Http2OwinMessageContext.cs │ │ └── Http2OwinMessageHandler.cs │ ├── App.config │ ├── CommonOwinKeys.cs │ ├── DictionaryExtensions.cs │ ├── GlobalSuppressions.cs │ ├── HttpConnectingClient.cs │ ├── HttpSocketServer.cs │ ├── Microsoft.Http2.Owin.Server.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SocketServerFactory.cs │ └── packages.config └── Microsoft.Http2.PushMiddleware │ ├── Bing │ ├── BingHelpers │ │ ├── BingHelper.cs │ │ ├── CommonNames.cs │ │ ├── Tile.cs │ │ └── TileSystem.cs │ ├── BingPushMiddleware.cs │ └── HtmlProcessor.cs │ ├── Microsoft.Http2.PushMiddleware.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── PushMiddlewareBase.cs │ ├── StaticFiles │ ├── GraphHelper.cs │ ├── PushExtensions.cs │ ├── PushMiddleware.cs │ └── ReferenceTable.cs │ ├── app.config │ └── packages.config └── tests ├── Http2.Katana.Tests ├── App.config ├── BasicTests.cs ├── CompProcState.cs ├── EncContextUpdateTests.cs ├── Facts.cs ├── GlobalSuppressions.cs ├── HandshakeTests.cs ├── Http11Tests.cs ├── Http2.Katana.Tests.csproj ├── Http2Tests.cs ├── Properties │ └── AssemblyInfo.cs ├── ResponseMiddleware.cs ├── TestHelpers.cs ├── packages.config ├── root │ ├── 5mbTest.txt │ ├── index.html │ └── simpleTest.txt └── test.xunit ├── Http2.TestClient ├── Adapters │ ├── Http11ClientMessageHandler.cs │ └── Http2ClientMessageHandler.cs ├── ArgsHelper.cs ├── CommandParser │ ├── CommandParser.cs │ └── HelpDisplayer.cs ├── CommandTypes.cs ├── Commands │ ├── Command.cs │ ├── DeleteCommand.cs │ ├── DirCommand.cs │ ├── EmptyCommand.cs │ ├── ExitCommand.cs │ ├── GetCommand.cs │ ├── HelpCommand.cs │ ├── IUriCommand.cs │ ├── PingCommand.cs │ ├── PostCommand.cs │ ├── PutCommand.cs │ └── UnknownCommand.cs ├── GlobalSuppressions.cs ├── Handshake │ ├── HandshakeFailureReason.cs │ ├── HandshakeKeys.cs │ ├── HandshakeResponse.cs │ ├── HandshakeResult.cs │ ├── Http2HandshakeFailed.cs │ └── UpgradeHandshaker.cs ├── Http2.TestClient.csproj ├── Http2SessionHandler.cs ├── IO │ └── FileHelper.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── certificate.pfx └── packages.config └── OpenSsl.Tests ├── .gitignore ├── GlobalSuppressions.cs ├── OpenSslNUnitTests.csproj ├── Properties └── AssemblyInfo.cs ├── SourceForgeBugs.cs ├── TestAES.cs ├── TestBase.cs ├── TestCryptoKey.cs ├── TestDH.cs ├── TestDSA.cs ├── TestECDH.cs ├── TestECDSA.cs ├── TestHMAC.cs ├── TestRSA.cs ├── TestRandom.cs ├── TestSHA.cs ├── TestSHA1.cs ├── TestSHA256.cs ├── TestSHA512.cs ├── TestServer.cs ├── TestX509.cs ├── TestX509Certificate.cs ├── certs ├── ca.crt ├── ca.der ├── ca.key ├── ca_chain.p7c ├── ca_chain.p7c.pem ├── ca_chain.pem ├── client.crt ├── client.key ├── client.pfx ├── server.crt ├── server.key └── server.pfx ├── nunit.framework.dll ├── openssl.cnf └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /Http2.Katana.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/Http2.Katana.sln -------------------------------------------------------------------------------- /Packages.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/Packages.dgml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/README.md -------------------------------------------------------------------------------- /Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/Settings.StyleCop -------------------------------------------------------------------------------- /packages/Owin.1.0/Owin.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/packages/Owin.1.0/Owin.1.0.nupkg -------------------------------------------------------------------------------- /packages/Owin.1.0/lib/net40/Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/packages/Owin.1.0/lib/net40/Owin.dll -------------------------------------------------------------------------------- /packages/zlib.net.1.0.4.0/lib/zlib.net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/packages/zlib.net.1.0.4.0/lib/zlib.net.dll -------------------------------------------------------------------------------- /packages/zlib.net.1.0.4.0/zlib.net.1.0.4.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/packages/zlib.net.1.0.4.0/zlib.net.1.0.4.0.nupkg -------------------------------------------------------------------------------- /res/certificate.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/res/certificate.pfx -------------------------------------------------------------------------------- /res/client.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/res/client.pfx -------------------------------------------------------------------------------- /res/cloudapp.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/res/cloudapp.pfx -------------------------------------------------------------------------------- /res/server.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/res/server.pfx -------------------------------------------------------------------------------- /samples/Http2.Owin.BingProxy.Sample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.BingProxy.Sample/App.config -------------------------------------------------------------------------------- /samples/Http2.Owin.BingProxy.Sample/Http2.Owin.BingProxy.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.BingProxy.Sample/Http2.Owin.BingProxy.Sample.csproj -------------------------------------------------------------------------------- /samples/Http2.Owin.BingProxy.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.BingProxy.Sample/Program.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.BingProxy.Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.BingProxy.Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.BingProxy.Sample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.BingProxy.Sample/Startup.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.BingProxy.Sample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.BingProxy.Sample/packages.config -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/App.config -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/Http2.Owin.Service.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/Http2.Owin.Service.Sample.csproj -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/Http2ServerInstaller.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/Http2ServerInstaller.Designer.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/Http2ServerInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/Http2ServerInstaller.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/Http2ServerService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/Http2ServerService.Designer.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/Http2ServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/Http2ServerService.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/Program.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/Startup.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/packages.config -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/5mbTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/5mbTest.txt -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark.htm -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/Benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/Benchmark.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/Chalkboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/Chalkboard.css -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/Chalkboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/Chalkboard.svg -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/EmptyChalkboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/EmptyChalkboard.svg -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/FeatureDetectAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/FeatureDetectAudio.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/Logo.png -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/ReturnAndShareControls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/ReturnAndShareControls.css -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/ReturnAndShareControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/ReturnAndShareControls.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/TestDriveCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Chalkboard HTML5 Benchmark_files/TestDriveCommon.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark.htm -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/BaseStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/BaseStyles.css -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/FeatureDetection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/FeatureDetection.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/IE-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/IE-logo.png -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/ImageManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/ImageManager.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/Keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/Keyboard.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/LBLogoVert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/LBLogoVert.png -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/LiteBrite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/LiteBrite.css -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/LiteBrite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/LiteBrite.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/ReturnAndShareControls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/ReturnAndShareControls.css -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/ReturnAndShareControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/ReturnAndShareControls.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/Support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/Support.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/TestDriveCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/TestDriveCommon.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/Timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/Lite Brite Browser Performance Benchmark_files/Timer.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround.htm -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/BaseStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/BaseStyles.css -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/Demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/Demo.css -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/DemoTemplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/DemoTemplate.css -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/FavIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/FavIcon.ico -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/ReturnAndShareControls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/ReturnAndShareControls.css -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/ReturnAndShareControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/ReturnAndShareControls.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/ReturnButtonImageStrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/ReturnButtonImageStrip.png -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/TestDriveCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/TestDriveCommon.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/ie-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/ie-logo.png -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/instructions.png -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/loading.gif -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/negx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/negx.jpg -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/negy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/negy.jpg -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/negz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/negz.jpg -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/posx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/posx.jpg -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/posy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/posy.jpg -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/posz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/posz.jpg -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/LookAround_files/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/LookAround_files/three.min.js -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/index.html -------------------------------------------------------------------------------- /samples/Http2.Owin.Service.Sample/root/simpleTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.Service.Sample/root/simpleTest.txt -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/App.config -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/Http2.Owin.StaticFiles.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/Http2.Owin.StaticFiles.Sample.csproj -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/Program.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/Startup.cs -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/packages.config -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/5mbTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/5mbTest.txt -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark.htm -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/Benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/Benchmark.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/Chalkboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/Chalkboard.css -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/Chalkboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/Chalkboard.svg -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/EmptyChalkboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/EmptyChalkboard.svg -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/FeatureDetectAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/FeatureDetectAudio.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/Logo.png -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/ReturnAndShareControls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/ReturnAndShareControls.css -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/ReturnAndShareControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/ReturnAndShareControls.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/TestDriveCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Chalkboard HTML5 Benchmark_files/TestDriveCommon.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark.htm -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/BaseStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/BaseStyles.css -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/FeatureDetection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/FeatureDetection.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/IE-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/IE-logo.png -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/ImageManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/ImageManager.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/Keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/Keyboard.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/LBLogoVert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/LBLogoVert.png -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/LiteBrite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/LiteBrite.css -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/LiteBrite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/LiteBrite.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/ReturnAndShareControls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/ReturnAndShareControls.css -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/ReturnAndShareControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/ReturnAndShareControls.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/Support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/Support.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/TestDriveCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/TestDriveCommon.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/Timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/Lite Brite Browser Performance Benchmark_files/Timer.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround.htm -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/BaseStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/BaseStyles.css -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/Demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/Demo.css -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/DemoTemplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/DemoTemplate.css -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/FavIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/FavIcon.ico -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/ReturnAndShareControls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/ReturnAndShareControls.css -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/ReturnAndShareControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/ReturnAndShareControls.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/ReturnButtonImageStrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/ReturnButtonImageStrip.png -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/TestDriveCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/TestDriveCommon.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/ie-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/ie-logo.png -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/instructions.png -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/loading.gif -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/negx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/negx.jpg -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/negy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/negy.jpg -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/negz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/negz.jpg -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/posx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/posx.jpg -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/posy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/posy.jpg -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/posz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/posz.jpg -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/LookAround_files/three.min.js -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/index.html -------------------------------------------------------------------------------- /samples/Http2.Owin.StaticFiles.Sample/root/simpleTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/samples/Http2.Owin.StaticFiles.Sample/root/simpleTest.txt -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/CommonHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/CommonHeaders.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Compression/HeadersDeltaCompression/CompressionProcessor/CompressionProcStaticTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Compression/HeadersDeltaCompression/CompressionProcessor/CompressionProcStaticTable.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Compression/HeadersDeltaCompression/CompressionProcessor/CompressionProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Compression/HeadersDeltaCompression/CompressionProcessor/CompressionProcessor.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Compression/HeadersDeltaCompression/Indexation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Compression/HeadersDeltaCompression/Indexation.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Compression/HeadersDeltaCompression/IndexationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Compression/HeadersDeltaCompression/IndexationType.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Compression/HeadersDeltaCompression/UVarIntPrefix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Compression/HeadersDeltaCompression/UVarIntPrefix.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Compression/HuffmanCompression/BinaryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Compression/HuffmanCompression/BinaryConverter.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Compression/HuffmanCompression/BitTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Compression/HuffmanCompression/BitTree.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Compression/HuffmanCompression/HuffmanCodesTable/HuffmanCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Compression/HuffmanCompression/HuffmanCodesTable/HuffmanCodes.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Compression/HuffmanCompression/HuffmanCodesTable/HuffmanCodesTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Compression/HuffmanCompression/HuffmanCodesTable/HuffmanCodesTable.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Compression/HuffmanCompression/HuffmanCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Compression/HuffmanCompression/HuffmanCompressor.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Compression/IAdditionalHeaderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Compression/IAdditionalHeaderInfo.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Compression/ICompressionProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Compression/ICompressionProcessor.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Constants.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/EventArgs/DataFrameSentEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/EventArgs/DataFrameSentEventArgs.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/EventArgs/FrameReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/EventArgs/FrameReceivedEventArgs.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/EventArgs/FrameSentEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/EventArgs/FrameSentEventArgs.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/EventArgs/RequestSentEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/EventArgs/RequestSentEventArgs.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/EventArgs/SettingsSentEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/EventArgs/SettingsSentEventArgs.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/EventArgs/StreamClosedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/EventArgs/StreamClosedEventArgs.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Exceptions/CompressionError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Exceptions/CompressionError.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Exceptions/Http2StreamNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Exceptions/Http2StreamNotFoundException.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Exceptions/InvalidHeaderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Exceptions/InvalidHeaderException.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Exceptions/MaxConcurrentStreamsLimitException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Exceptions/MaxConcurrentStreamsLimitException.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Exceptions/ProtocolError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Exceptions/ProtocolError.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Extensions/DictionaryExtenstions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Extensions/DictionaryExtenstions.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Extensions/Int32Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Extensions/Int32Extensions.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Extensions/MathEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Extensions/MathEx.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/FlowControl/FlowControlManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/FlowControl/FlowControlManager.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/FlowControl/FlowControlOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/FlowControl/FlowControlOptions.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/ForbiddenHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/ForbiddenHeaders.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/ContinuationFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/ContinuationFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/DataFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/DataFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/Frame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/FrameFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/FrameFlags.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/FrameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/FrameHelper.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/FrameReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/FrameReader.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/FrameType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/FrameType.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/GoAwayFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/GoAwayFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/GoAwayStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/GoAwayStatusCode.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/HeadersFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/HeadersFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/HeadersSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/HeadersSequence.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/IEndSegmentFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/IEndSegmentFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/IEndStreamFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/IEndStreamFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/IHeadersFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/IHeadersFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/IPaddingFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/IPaddingFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/PingFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/PingFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/PriorityFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/PriorityFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/PushPromiseFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/PushPromiseFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/ResetStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/ResetStatusCode.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/RstStreamFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/RstStreamFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/SettingsFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/SettingsFlags.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/SettingsFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/SettingsFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/SettingsIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/SettingsIds.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/SettingsPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/SettingsPair.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Framing/WindowUpdateFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Framing/WindowUpdateFrame.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/HeadersList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/HeadersList.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/HeadersSequenceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/HeadersSequenceList.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Http2MessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Http2MessageHandler.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Http2Session/Http2SessionDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Http2Session/Http2SessionDesc.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Http2Session/Http2SessionFrameHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Http2Session/Http2SessionFrameHandling.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Http2Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Http2Stream.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/IO/IPriorityItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/IO/IPriorityItem.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/IO/IQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/IO/IQueue.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/IO/IQueueItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/IO/IQueueItem.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/IO/PriorityQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/IO/PriorityQueue.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/IO/PriorityQueueEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/IO/PriorityQueueEntry.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/IO/QueueEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/IO/QueueEntry.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/IO/QueueWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/IO/QueueWrapper.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/IO/ResponseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/IO/ResponseStream.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/IO/StreamBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/IO/StreamBuffer.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/IO/WriteQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/IO/WriteQueue.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Microsoft.Http2.Protocol.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Microsoft.Http2.Protocol.csproj -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Protocols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Protocols.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/StatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/StatusCode.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/StreamDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/StreamDictionary.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/StreamState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/StreamState.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Utils/Http2Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Utils/Http2Logger.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Utils/Http2LoggerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Utils/Http2LoggerState.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/Verbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/Verbs.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft.Http2.Protocol/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/Microsoft.Http2.Protocol/packages.config -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/App.config -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/ConnectionEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/ConnectionEnd.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/Asn1DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/Asn1DateTime.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/Asn1Integer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/Asn1Integer.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/Asn1Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/Asn1Object.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/Asn1String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/Asn1String.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/BIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/BIO.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/Base.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/BigNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/BigNumber.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/Crypto.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/MemoryTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/MemoryTracker.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/Native.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/Objects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/Objects.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/OpenSslException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/OpenSslException.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/Password.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/Password.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/Random.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/Stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/Stack.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Core/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Core/Version.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/Cipher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/Cipher.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/CryptoKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/CryptoKey.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/DH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/DH.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/DSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/DSA.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/EC/BuiltinCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/EC/BuiltinCurve.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/EC/DSASignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/EC/DSASignature.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/EC/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/EC/Group.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/EC/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/EC/Key.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/EC/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/EC/Method.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/EC/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/EC/Point.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/HMAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/HMAC.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/MessageDigest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/MessageDigest.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/RSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Crypto/RSA.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Exceptions/AlpnException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Exceptions/AlpnException.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Extensions/Alpn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Extensions/Alpn.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Extensions/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Extensions/Errors.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Extensions/SNI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Extensions/SNI.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/OpenSslWrapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/OpenSslWrapper.csproj -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/Protocols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/Protocols.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/SSL/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/SSL/Enums.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SSL_CTX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SSL_CTX.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/SSL/Ssl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/SSL/Ssl.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslCipher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslCipher.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslContext.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslMethod.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslStream.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslStreamBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslStreamBase.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslStreamClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslStreamClient.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslStreamServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/SSL/SslStreamServer.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/Configuration.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/Identity.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/PKCS12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/PKCS12.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/PKCS7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/PKCS7.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/VerifyResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/VerifyResult.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Certificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Certificate.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509CertificateAuthority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509CertificateAuthority.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509CertificateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509CertificateInfo.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Chain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Chain.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Extension.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Name.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Object.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Request.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509Store.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509StoreContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/ManagedOpenSsl/X509/X509StoreContext.cs -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/native/windows/x86/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/native/windows/x86/libeay32.dll -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/native/windows/x86/openssl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/native/windows/x86/openssl.exe -------------------------------------------------------------------------------- /src/Libraries/OpenSsl/native/windows/x86/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Libraries/OpenSsl/native/windows/x86/ssleay32.dll -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Middleware/Http2Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Middleware/Http2Extensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Middleware/Http2Middleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Middleware/Http2Middleware.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Middleware/Microsoft.Http2.Owin.Middleware.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Middleware/Microsoft.Http2.Owin.Middleware.csproj -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Middleware/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Middleware/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Middleware/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Middleware/packages.config -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/Adapters/Http11Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/Adapters/Http11Helper.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/Adapters/Http11OwinMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/Adapters/Http11OwinMessageHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/Adapters/Http2OwinMessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/Adapters/Http2OwinMessageContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/Adapters/Http2OwinMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/Adapters/Http2OwinMessageHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/App.config -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/CommonOwinKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/CommonOwinKeys.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/HttpConnectingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/HttpConnectingClient.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/HttpSocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/HttpSocketServer.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/Microsoft.Http2.Owin.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/Microsoft.Http2.Owin.Server.csproj -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/SocketServerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/SocketServerFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.Owin.Server/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.Owin.Server/packages.config -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/Bing/BingHelpers/BingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/Bing/BingHelpers/BingHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/Bing/BingHelpers/CommonNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/Bing/BingHelpers/CommonNames.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/Bing/BingHelpers/Tile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/Bing/BingHelpers/Tile.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/Bing/BingHelpers/TileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/Bing/BingHelpers/TileSystem.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/Bing/BingPushMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/Bing/BingPushMiddleware.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/Bing/HtmlProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/Bing/HtmlProcessor.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/Microsoft.Http2.PushMiddleware.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/Microsoft.Http2.PushMiddleware.csproj -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/PushMiddlewareBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/PushMiddlewareBase.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/StaticFiles/GraphHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/StaticFiles/GraphHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/StaticFiles/PushExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/StaticFiles/PushExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/StaticFiles/PushMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/StaticFiles/PushMiddleware.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/StaticFiles/ReferenceTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/StaticFiles/ReferenceTable.cs -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/app.config -------------------------------------------------------------------------------- /src/Microsoft.Http2.PushMiddleware/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/src/Microsoft.Http2.PushMiddleware/packages.config -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/App.config -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/BasicTests.cs -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/CompProcState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/CompProcState.cs -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/EncContextUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/EncContextUpdateTests.cs -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/Facts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/Facts.cs -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/GlobalSuppressions.cs -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/HandshakeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/HandshakeTests.cs -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/Http11Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/Http11Tests.cs -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/Http2.Katana.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/Http2.Katana.Tests.csproj -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/Http2Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/Http2Tests.cs -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/ResponseMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/ResponseMiddleware.cs -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/TestHelpers.cs -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/packages.config -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/root/5mbTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/root/5mbTest.txt -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/root/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/root/index.html -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/root/simpleTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/root/simpleTest.txt -------------------------------------------------------------------------------- /tests/Http2.Katana.Tests/test.xunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.Katana.Tests/test.xunit -------------------------------------------------------------------------------- /tests/Http2.TestClient/Adapters/Http11ClientMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Adapters/Http11ClientMessageHandler.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Adapters/Http2ClientMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Adapters/Http2ClientMessageHandler.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/ArgsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/ArgsHelper.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/CommandParser/CommandParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/CommandParser/CommandParser.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/CommandParser/HelpDisplayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/CommandParser/HelpDisplayer.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/CommandTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/CommandTypes.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Commands/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Commands/Command.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Commands/DeleteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Commands/DeleteCommand.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Commands/DirCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Commands/DirCommand.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Commands/EmptyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Commands/EmptyCommand.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Commands/ExitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Commands/ExitCommand.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Commands/GetCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Commands/GetCommand.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Commands/HelpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Commands/HelpCommand.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Commands/IUriCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Commands/IUriCommand.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Commands/PingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Commands/PingCommand.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Commands/PostCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Commands/PostCommand.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Commands/PutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Commands/PutCommand.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Commands/UnknownCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Commands/UnknownCommand.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/GlobalSuppressions.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Handshake/HandshakeFailureReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Handshake/HandshakeFailureReason.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Handshake/HandshakeKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Handshake/HandshakeKeys.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Handshake/HandshakeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Handshake/HandshakeResponse.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Handshake/HandshakeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Handshake/HandshakeResult.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Handshake/Http2HandshakeFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Handshake/Http2HandshakeFailed.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Handshake/UpgradeHandshaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Handshake/UpgradeHandshaker.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Http2.TestClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Http2.TestClient.csproj -------------------------------------------------------------------------------- /tests/Http2.TestClient/Http2SessionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Http2SessionHandler.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/IO/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/IO/FileHelper.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Program.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Http2.TestClient/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/app.config -------------------------------------------------------------------------------- /tests/Http2.TestClient/certificate.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/certificate.pfx -------------------------------------------------------------------------------- /tests/Http2.TestClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/Http2.TestClient/packages.config -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/.gitignore: -------------------------------------------------------------------------------- 1 | test-results 2 | -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/GlobalSuppressions.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/OpenSslNUnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/OpenSslNUnitTests.csproj -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/SourceForgeBugs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/SourceForgeBugs.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestAES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestAES.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestBase.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestCryptoKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestCryptoKey.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestDH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestDH.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestDSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestDSA.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestECDH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestECDH.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestECDSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestECDSA.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestHMAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestHMAC.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestRSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestRSA.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestRandom.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestSHA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestSHA.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestSHA1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestSHA1.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestSHA256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestSHA256.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestSHA512.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestSHA512.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestServer.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestX509.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestX509.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/TestX509Certificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/TestX509Certificate.cs -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/certs/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/certs/ca.crt -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/certs/ca.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/certs/ca.der -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/certs/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/certs/ca.key -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/certs/ca_chain.p7c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/certs/ca_chain.p7c -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/certs/ca_chain.p7c.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/certs/ca_chain.p7c.pem -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/certs/ca_chain.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/certs/ca_chain.pem -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/certs/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/certs/client.crt -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/certs/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/certs/client.key -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/certs/client.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/certs/client.pfx -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/certs/server.crt -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/certs/server.key -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/certs/server.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/certs/server.pfx -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/nunit.framework.dll -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/openssl.cnf -------------------------------------------------------------------------------- /tests/OpenSsl.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/http2-katana/HEAD/tests/OpenSsl.Tests/packages.config --------------------------------------------------------------------------------