Seer
Seer
There is also a Close method that is not Close window. Honestly i am not sure the right one and would need to build a console app that listens to...
Ok. For client side is the a point I could inject it before the buffer? Generally for a NNTP client you want to use SSL for connection. Server is local...
No more let libuv manage the connection but have a sslstream or buffer on top between libuv and dotnet app using your library? On Sat, 3 Jun 2017 at 2:41...
Is it really that hard in current core 1.1? I know they did it for the dotnet core webserver but I guess that is server side SSL instead of client...
Ok. Since most of the core Libs are meant to not be tied to the version of dotnet core and are open source I wonder if I can copy out...
Can you point me to the parts of core2 we need? I see that libuv v1.10.0-preview1 is out and works on core 1.0.1 and greater but i assume it is...
Think i found what you are waiting on. It is System.IO.Pipelines.Networking.Libuv right? https://github.com/dotnet/corefxlab/tree/master/src/System.IO.Pipelines.Networking.Libuv
Is there another one somewhere else that you were talking about? Can you provide a link. In my case it is just a personal project for improving my systems at...
ok but is it even a part of core2? I did find https://dotnet.myget.org/feed/dotnet-corefxlab/package/nuget/System.IO.Pipelines.Networking.Libuv and standard pipelines is there as well and they only seem to need .NETStandard 1.3 so i...
I think i get it. I would need to create a class that does basically the same thing as SSLStream but over an IPipeConnection and it needs to implement that...