-
Notifications
You must be signed in to change notification settings - Fork 135
moq-native: WebSocket fallback with explicit enum #812
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
Merged
kixelated
merged 7 commits into
moq-dev:main
from
jhiatt-verkada:websocket-fallback-with-explicit-enum
Jan 3, 2026
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
79e5bb6
moq-native: Factor out helper function
jhiatt-verkada f30c53f
moq-native: Add fallback to WebSocket
jhiatt-verkada 0f07786
moq-clock: Update example to use WebSocket fallback
jhiatt-verkada 94cbaec
Combine the QUIC/MoQ handshake into one.
kixelated f12b136
Also combine the server handshake accept.
kixelated 79364b4
Use `connect_with_fallback` in hang-cli
kixelated 72e97c7
Use the same tungstenite version.
kixelated File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
# Check the workspace configuration head -30 rs/Cargo.tomlRepository: moq-dev/moq
Length of output: 127
🏁 Script executed:
# Read the full rs/moq-native/Cargo.toml to verify the dependencies cat -n rs/moq-native/Cargo.tomlRepository: moq-dev/moq
Length of output: 2209
🏁 Script executed:
Repository: moq-dev/moq
Length of output: 101
🏁 Script executed:
Repository: moq-dev/moq
Length of output: 296
🏁 Script executed:
Repository: moq-dev/moq
Length of output: 306
🏁 Script executed:
# Check the root Cargo.toml for workspace dependencies cat -n Cargo.tomlRepository: moq-dev/moq
Length of output: 1003
🌐 Web query:
tokio-tungstenite latest version crate💡 Result:
The latest released version is tokio-tungstenite 0.28.0. [1][2]
Sources:
🌐 Web query:
humantime crate version 2.3 latest💡 Result:
Yes — the latest published humantime release is 2.3.0 (current as of Jan 3, 2026). [1][2]
Sources:
[1] humantime 2.3.0 documentation (docs.rs).
[2] Fedora package listing showing humantime 2.3.0.
🌐 Web query:
humantime-serde crate version 1.1 latest💡 Result:
The latest published version of the humantime-serde crate is 1.1.1. [1][2]
Sources:
Update tokio-tungstenite to the latest version.
While
humantime(2.3.0) andweb-transport-ws(workspace reference) are correctly pinned,tokio-tungstenite = "0.24"is outdated. The latest version is 0.28.0. Update totokio-tungstenite = "0.28"to align with current releases and security updates.humantime-serde = "1.1"could also be more specific (latest is 1.1.1), though the semantic versioning allows the current specification.🤖 Prompt for AI Agents