mirror of https://github.com/adamdruppe/arsd.git
url handle empty port specifier
This commit is contained in:
parent
419b2096fb
commit
949e91bdbe
5
cgi.d
5
cgi.d
|
@ -2912,7 +2912,10 @@ struct Uri {
|
|||
host = authority;
|
||||
} else {
|
||||
host = authority[0 .. idx2];
|
||||
port = to!int(authority[idx2 + 1 .. $]);
|
||||
if(idx2 + 1 < authority.length)
|
||||
port = to!int(authority[idx2 + 1 .. $]);
|
||||
else
|
||||
port = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
10
http2.d
10
http2.d
|
@ -452,7 +452,10 @@ struct HttpResponse {
|
|||
idx++;
|
||||
|
||||
string name = header[0 .. idx];
|
||||
header = header[idx + 1 .. $];
|
||||
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];
|
||||
port = to!int(authority[idx2 + 1 .. $]);
|
||||
if(idx2 + 1 < authority.length)
|
||||
port = to!int(authority[idx2 + 1 .. $]);
|
||||
else
|
||||
port = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue