Closed oumaima-aarabe closed 2 months ago
Tagging subscribers to this area: @dotnet/ncl See info in area-owners.md if you want to be subscribed.
The information you listed unfortunatelly is not actionable for us. Can you provide a self-contained repro project so that we can attempt to reproduce your issue locally? Also what version of .NET are you using (dotnet --info output) and what is the OS version?
and perhaps packet captures. This may be environmental and we may not be able to reproduce.
I am encountering issues with socket connections in my .NET application on macOS Ventura. The application experiences frequent connection timeouts, connection refused errors, and unexpected socket closures. Troubleshooting Steps Taken: -Verified network connectivity and server availability. -Increased the timeout values using SendTimeout and ReceiveTimeout. -Implemented retry logic with exponential backoff. -Checked firewall settings and network configurations. -Verified the server's IP address and port. -Used asynchronous socket operations (SendAsync and ReceiveAsync). -Ensured sockets are properly closed using socket.Close() or socket.Dispose(). -Tested the same code on other operating systems (e.g., Windows, Linux) without issues.