feat(headers): Parse Upgrade header protocols further#499
Merged
seanmonstar merged 1 commit intohyperium:masterfrom May 4, 2015
pyfisch:upgradeprotocol
Merged
feat(headers): Parse Upgrade header protocols further#499seanmonstar merged 1 commit intohyperium:masterfrom pyfisch:upgradeprotocol
seanmonstar merged 1 commit intohyperium:masterfrom
pyfisch:upgradeprotocol
Conversation
src/header/common/upgrade.rs
Outdated
Member
There was a problem hiding this comment.
This does pattern matching, which will skip UniCase::eq.
Contributor
Author
There was a problem hiding this comment.
That's true, if let is not needed anyway here.
Parses protocols into a name and a value part matching the RFC. An enum contains all registered or known protocols, but contains an extension variant. Closes #480 BREAKING CHANGE: Upgrade header Protocol changed.
Contributor
Author
|
Updated. |
seanmonstar
added a commit
that referenced
this pull request
May 4, 2015
feat(headers): Parse Upgrade header protocols further
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.
Parses protocols into a name and a value part matching the RFC.
An enum contains all registered or known protocols, but contains
an extension variant.
Closes #480
BREAKING CHANGE: Upgrade header Protocol changed.