-
Notifications
You must be signed in to change notification settings - Fork 9
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
Writing IPv4 addresses #12
Comments
Is this missing a word? I'm either having difficultly parsing the part before the first comma or I'm having difficultly reconciling it with the remainder of the first sentence. I'm presuming that this is concerning the |
It's not missing a word. I'm just saying that a valid IPv4 address should be one that is valid per RFC 3986, but we should define that in a way that is consistent with how we define the syntax of other parts of the URL. |
Thanks for the clarification. Got it. Here's the ABNF:
So exactly four numbers, all numbers are decimal, no leading zeros, all values between 0 and 255, ... things like that. Make sense to me. |
Yup, that. |
We should just require the syntax from RFC 3986, but instead of ABNF use prose to remain consistent. (Although I really would have expected us to use syntax diagrams here, as this section is aimed at web developers and not parser implementers.)
The text was updated successfully, but these errors were encountered: