Skip to content
Snippets Groups Projects
Commit cc856ab7 authored by deuce's avatar deuce
Browse files

Support IPv6 address literals per RFC 2732 in parse_url() (Used from

the command-line or CTRL-D)
parent f89bbf0f
No related branches found
No related tags found
No related merge requests found
......@@ -802,8 +802,19 @@ void parse_url(char *url, struct bbslist *bbs, int dflt_conn_type, int force_def
SAFECOPY(bbs->user,p1);
p1=p3+1;
}
p2 = p1;
if(*p1=='[') {
p2=strchr(p1, ']');
if(p2 != NULL) {
p1++;
*p2=0;
p2++;
}
else
p2 = p1;
}
SAFECOPY(bbs->name,p1);
p2=strchr(p1,':');
p2=strrchr(p2,':');
if(p2!=NULL) {
*p2=0;
p2++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment