Commit ed66b6ed authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

Improve vss_parse documentation

parent 5c1e6960
......@@ -46,14 +46,15 @@
/*
* Take a string provided by the user and break it up into address and
* port parts. Examples of acceptable input include:
* port parts. The address and port separator may be either a colon or
* a whitespace. Examples of acceptable input include:
*
* "localhost" - "localhost:80"
* "127.0.0.1" - "127.0.0.1:80"
* "0.0.0.0" - "0.0.0.0:80"
* "[::1]" - "[::1]:80"
* "[::]" - "[::]:80"
* "::1" - "[::1]:80"
* "localhost" - "localhost:80" - "localhost 80"
* "127.0.0.1" - "127.0.0.1:80" - "127.0.0.1 80"
* "0.0.0.0" - "0.0.0.0:80" - "0.0.0.0 80"
* "[::1]" - "[::1]:80" - "[::1] 80"
* "[::]" - "[::]:80" - "[::] 80"
* "::1" - "[::1]:80" - "::1 80"
*
* See also RFC5952
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment