initial cut at HTTP2 support for SocketsHttpHandler
authorGeoff Kizer <geoffrek>
Thu, 1 Mar 2018 22:58:33 +0000 (14:58 -0800)
committerGeoff Kizer <geoffrek>
Tue, 17 Jul 2018 18:50:49 +0000 (11:50 -0700)
commit39b260caba5e81972f07a55bcf8f9a40f1b15a87
tree91c33c29d488066b88c7aac58b37b916e13d0d94
parentc7c0f0e61145d06961e05981743507ce58b62d4d
initial cut at HTTP2 support for SocketsHttpHandler

Commit migrated from https://github.com/dotnet/corefx/commit/2b208a5fa5bea539c519fd432e926f8d613af666
21 files changed:
src/libraries/Common/src/System/Net/Http/HttpHandlerDefaults.cs
src/libraries/Common/tests/System/Net/Configuration.Http.cs
src/libraries/System.Net.Http/src/System.Net.Http.csproj
src/libraries/System.Net.Http/src/System/Net/Http/HPack/DynamicTable.cs [new file with mode: 0644]
src/libraries/System.Net.Http/src/System/Net/Http/HPack/HPackDecoder.cs [new file with mode: 0644]
src/libraries/System.Net.Http/src/System/Net/Http/HPack/HPackDecodingException.cs [new file with mode: 0644]
src/libraries/System.Net.Http/src/System/Net/Http/HPack/HPackEncoder.cs [new file with mode: 0644]
src/libraries/System.Net.Http/src/System/Net/Http/HPack/HeaderField.cs [new file with mode: 0644]
src/libraries/System.Net.Http/src/System/Net/Http/HPack/Huffman.cs [new file with mode: 0644]
src/libraries/System.Net.Http/src/System/Net/Http/HPack/HuffmanDecodingException.cs [new file with mode: 0644]
src/libraries/System.Net.Http/src/System/Net/Http/HPack/IntegerDecoder.cs [new file with mode: 0644]
src/libraries/System.Net.Http/src/System/Net/Http/HPack/IntegerEncoder.cs [new file with mode: 0644]
src/libraries/System.Net.Http/src/System/Net/Http/HPack/StaticTable.cs [new file with mode: 0644]
src/libraries/System.Net.Http/src/System/Net/Http/HttpMethod.cs
src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/ArrayBuffer.cs [new file with mode: 0644]
src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/Http2Connection.cs [new file with mode: 0644]
src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnection.cs
src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnectionPool.cs
src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnectionResponseContent.cs
src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnectionSettings.cs
src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/SocketsHttpHandler.cs