1. 18 Aug, 2019 1 commit
  2. 17 Aug, 2019 1 commit
  3. 12 Aug, 2019 1 commit
  4. 07 Aug, 2019 1 commit
  5. 21 Jul, 2019 7 commits
  6. 20 Jul, 2019 15 commits
  7. 16 Jul, 2019 4 commits
  8. 15 Jul, 2019 3 commits
  9. 13 Jul, 2019 1 commit
  10. 11 Jul, 2019 1 commit
  11. 14 May, 2019 1 commit
  12. 11 May, 2019 1 commit
  13. 07 May, 2019 1 commit
    • Stéphane Graziano's avatar
      clientStream were undisposed. · 715a26d3
      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
      ```
      
      ------------------------
      715a26d3
  14. 06 May, 2019 1 commit
  15. 04 May, 2019 1 commit