mirror of https://github.com/adamdruppe/arsd.git
lol druntime made int32_t an enum on -m32omf and an alias everywhere else
This commit is contained in:
parent
a30a39bf62
commit
617d4cecfc
3
http2.d
3
http2.d
|
@ -1909,7 +1909,8 @@ class HttpRequest {
|
||||||
// is liable to block forever hogging the connection and not letting it send...
|
// is liable to block forever hogging the connection and not letting it send...
|
||||||
if(request.state == State.connecting)
|
if(request.state == State.connecting)
|
||||||
if(writeSet.isSet(sock) || readSet.isSet(sock)) {
|
if(writeSet.isSet(sock) || readSet.isSet(sock)) {
|
||||||
int error;
|
import core.stdc.stdint;
|
||||||
|
int32_t error;
|
||||||
int retopt = sock.getOption(SocketOptionLevel.SOCKET, SocketOption.ERROR, error);
|
int retopt = sock.getOption(SocketOptionLevel.SOCKET, SocketOption.ERROR, error);
|
||||||
if(retopt < 0 || error != 0) {
|
if(retopt < 0 || error != 0) {
|
||||||
request.state = State.aborted;
|
request.state = State.aborted;
|
||||||
|
|
Loading…
Reference in New Issue