justcoding121 / titanium-web-proxy

A cross-platform asynchronous HTTP(S) proxy server in C#.
MIT License
1.93k stars 618 forks source link

bug -- BeginAcceptTcpClient/EndAcceptSocket #810

Closed jgilbert2017 closed 3 years ago

jgilbert2017 commented 4 years ago

there is mismatched BeginAccept/EndAccept in ProxyServer.cs. BeginAcceptTcpClient is being called and then EndAcceptSocket. It should be calling BeginAcceptSocket() in 2 places. .net 5.0 is intolerant of this.

honfika commented 4 years ago

thanks, fixed

jgilbert2017 commented 4 years ago

no prob, thanks for putting so much effort into a great project!