- 21 Jul, 2019 4 commits
-
-
honfika authored
Master to beta
-
buildbot121 authored
-
Honfika authored
-
Honfika authored
-
- 20 Jul, 2019 18 commits
-
-
Honfika authored
-
honfika authored
do not throw exception in fillbuffer (only when it called on an alrea…
-
Honfika authored
-
honfika authored
Master to beta
-
Honfika authored
-
Honfika authored
-
Honfika authored
-
Honfika authored
-
honfika authored
Master to beta
-
honfika authored
Revert "Beta to stable"
-
honfika authored
-
buildbot121 authored
-
-
Honfika authored
-
honfika authored
Beta to stable
-
honfika authored
Merge to beta
-
Honfika authored
-
Honfika authored
-
- 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 1 commit
-
-
Stéphane Graziano authored
-