Fix encoding IPv6 addresses in pvalues#45
Merged
mdecimus merged 1 commit intostalwartlabs:mainfrom May 23, 2025
Merged
Conversation
Member
|
Good catch! To avoid an extra allocation please create a wrapper struct that implements |
Contributor
Author
Okay, will avoid that allocation. However, I think IMHO a newtype is only warranted if it's something that is more generic (and even then I think it's questionable) and using something like |
RFC 8601 section 2.2[1] specifies the pvalue field like this:
pvalue = [CFWS] ( value / [ [ local-part ] "@" ] domain-name )
[CFWS]
; the value extracted from the message property defined
; by the "ptype.property" construction
The "value" here refers to RFC 2045 section 5.1[2], here are the
relevant parts:
value := token / quoted-string
token := 1*<any (US-ASCII) CHAR except SPACE, CTLs,
or tspecials>
tspecials := "(" / ")" / "<" / ">" / "@" /
"," / ";" / ":" / "\" / <">
"/" / "[" / "]" / "?" / "="
; Must be in quoted-string,
; to use within parameter values
Since IPv6 addresses contain ":" characters that are included in
"tspecials" above, it needs to be a quoted-string.
[1]: https://datatracker.ietf.org/doc/html/rfc8601#section-2.2
[2]: https://datatracker.ietf.org/doc/html/rfc2045#section-5.1
Signed-off-by: aszlig <aszlig@nix.build>
aefd93a to
bac0b7b
Compare
aszlig
commented
May 23, 2025
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.
RFC 8601 section 2.2 specifies the
pvaluefield like this:The
valuehere refers to RFC 2045 section 5.1, here are the relevant parts:Since IPv6 addresses contain
:characters that are included intspecialsabove, it needs to be a quoted-string.