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