url_regex: Add missing : in <username>:<password>
This commit is contained in:
parent
68b92d3702
commit
4f558cd62d
|
@ -8,7 +8,7 @@
|
||||||
#define HOST "(?:" HOSTCHARS_CLASS "+(\\." HOSTCHARS_CLASS "+)*)?"
|
#define HOST "(?:" HOSTCHARS_CLASS "+(\\." HOSTCHARS_CLASS "+)*)?"
|
||||||
#define PORT "(?:\\:[[:digit:]]{1,5})?"
|
#define PORT "(?:\\:[[:digit:]]{1,5})?"
|
||||||
#define SCHEME "(?:[[:alpha:]][+-.[:alnum:]]*:)"
|
#define SCHEME "(?:[[:alpha:]][+-.[:alnum:]]*:)"
|
||||||
#define USERPASS USERCHARS_CLASS "+(?:" PASSCHARS_CLASS "+)?"
|
#define USERPASS USERCHARS_CLASS "+(?:\\:" PASSCHARS_CLASS "+)?"
|
||||||
#define URLPATH "(?:/[[:alnum:]\\Q-_.!~*'();/?:@&=+$,#%\\E]*)?"
|
#define URLPATH "(?:/[[:alnum:]\\Q-_.!~*'();/?:@&=+$,#%\\E]*)?"
|
||||||
|
|
||||||
const char * const url_regex = SCHEME "//(?:" USERPASS "\\@)?" HOST PORT URLPATH;
|
const char * const url_regex = SCHEME "//(?:" USERPASS "\\@)?" HOST PORT URLPATH;
|
||||||
|
|
Loading…
Reference in New Issue