url handle empty port specifier

This commit is contained in:
Adam D. Ruppe 2022-09-09 16:32:08 -04:00
parent 419b2096fb
commit 949e91bdbe
2 changed files with 12 additions and 3 deletions

3
cgi.d
View File

@ -2912,7 +2912,10 @@ struct Uri {
host = authority;
} else {
host = authority[0 .. idx2];
if(idx2 + 1 < authority.length)
port = to!int(authority[idx2 + 1 .. $]);
else
port = 0;
}
}

View File

@ -452,7 +452,10 @@ struct HttpResponse {
idx++;
string name = header[0 .. idx];
if(idx + 1 < header.length)
header = header[idx + 1 .. $];
else
header = header[$ .. $];
string value;
@ -764,7 +767,10 @@ struct Uri {
host = authority;
} else {
host = authority[0 .. idx2];
if(idx2 + 1 < authority.length)
port = to!int(authority[idx2 + 1 .. $]);
else
port = 0;
}
}