Research: .NET 11 WebSocket Happy Eyeballs support for future C# implementation#4
Draft
Research: .NET 11 WebSocket Happy Eyeballs support for future C# implementation#4
Conversation
Co-authored-by: matthewcorven <27839633+matthewcorven@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Investigated .NET 11 Preview 1's Happy Eyeballs (RFC 8305) support in
Socket.ConnectAsyncto determine benefits for a potential C# implementation of SyncKit's WebSocket synchronization protocol.Key Finding: Happy Eyeballs provides 20-30x faster connection establishment in broken IPv6 scenarios (from 20-30 seconds → <1 second) with minimal API changes. Strong recommendation to adopt when/if implementing C# client.
Type of Change
Related Issues
Research task from issue discussion.
Changes Made
ConnectAlgorithm.ParallelAPI for Happy Eyeballs supportTesting
Checklist
Additional Context
Research Deliverable
Created
/docs/research/dotnet11-websocket-happy-eyeballs.md(658 lines) covering:ConnectAlgorithm.Parallelenum forSocket.ConnectAsyncContext
SyncKit currently has no C# implementation (TypeScript SDK + Rust WASM core only). This research documents benefits for future C# development, should it be pursued. Browser-based TypeScript client already benefits from Happy Eyeballs built into modern browsers.
Key Recommendation
Adopt Happy Eyeballs in any future C# WebSocket implementation:
Original prompt