- 20 Jul, 2019 8 commits
- 16 Jul, 2019 4 commits
- 15 Jul, 2019 3 commits
-
-
honfika authored
Merge to beta
-
buildbot121 authored
-
honfika authored
Mono fix?
-
- 13 Jul, 2019 1 commit
-
-
honfika authored
-
- 11 Jul, 2019 1 commit
-
-
Jehonathan Thomas authored
-
- 14 May, 2019 1 commit
-
-
Stéphane Graziano authored
- IsClosed doesn't solve the memleak (streams are still blocked inside SslStream), only throwing an exception can fix that behavior. - BeginWrite was not correct, we should call this.WriteAsync instead of baseStream.WriteAsync rewritten
-
- 11 May, 2019 1 commit
-
-
Jehonathan Thomas authored
CustomBufferedStream were not disposed
-
- 07 May, 2019 1 commit
-
-
Stéphane Graziano authored
```------------------------ //1st clientStream var clientStream = new CustomBufferedStream(clientConnection.GetStream(), BufferPool, BufferSize); sslStream = new SslStream(clientStream, false); //false => do not dispose 1st ClientStream //2nd clientStream clientStream = new CustomBufferedStream(sslStream, BufferPool, BufferSize); ... sslStream?.Dispose(); // dispose sslStream but not 1st ClientStream clientStream.Dispose(); // dispose 2nd ClientStream, sslStream (already disposed) //here 1st clientStream is not disposed ``` ------------------------
-
- 06 May, 2019 1 commit
-
-
- 04 May, 2019 3 commits
-
-
Stéphane Graziano authored
Mixed implementation for startWith + PeekBytesAsync with the use of bufferpool (to get the best of the two worlds)
-
Stéphane Graziano authored
-
Stéphane Graziano authored
-
- 02 May, 2019 1 commit
-
-
Stéphane Graziano authored
Mixed implementation for startWith + PeekBytesAsync with the use of bufferpool (to get the best of the two worlds)
-
- 30 Apr, 2019 3 commits
-
-
Stéphane Graziano authored
-
Stéphane Graziano authored
-
-
- 29 Apr, 2019 1 commit
-
-
honfika authored
allow to modify HTTP/2 header
-
- 28 Apr, 2019 2 commits
- 27 Apr, 2019 2 commits
- 26 Apr, 2019 7 commits
-
-
honfika authored
nuget package consolidation
-
Honfika authored
-
Honfika authored
-
Honfika authored
Require .net standard 2.0 for StreamExtended project (which is used by TWP only, which also needs 2.0) => Allow to consolidate nuget packages.
-
Honfika authored
-
Honfika authored
-
honfika authored
Small HTTP/2 and other improvements
-