-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Happy Eyeballs support in Socket.ConnectAsync #87932
Labels
Milestone
Comments
Tagging subscribers to this area: @dotnet/ncl Issue DetailsThis API has been proposed and approved on #861. class Socket
{
// existing: public static bool ConnectAsync(SocketType socketType, ProtocolType protocolType, SocketAsyncEventArgs e);
public static bool ConnectAsync (SocketType socketType, ProtocolType protocolType, SocketAsyncEventArgs e, ConnectAlgorithm connectAlgorithm);
}
// new enum
enum ConnectAlgorithm
{
// use existing behavior.
Default,
// use a Happy Eyeballs-like algorithm to connect.
Parallel = 1
}
|
related to #26177 |
This was referenced Dec 13, 2023
Just to add a token of community interest, Bunny.net would love to have this feature available in .NET 10. Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
This API has been proposed and approved on #861.
Since we're closing the mega-issue(#33418) we'll track this here.
The text was updated successfully, but these errors were encountered: