We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 954e489 commit ae3f8caCopy full SHA for ae3f8ca
src/node_http_parser.cc
@@ -1106,6 +1106,11 @@ void ConnectionsList::Expired(const FunctionCallbackInfo<Value>& args) {
1106
std::swap(headers_timeout, request_timeout);
1107
}
1108
1109
+ // On IoT or embedded devices the uv_hrtime() may return the timestamp
1110
+ // that is smaller than configured timeout for headers or request
1111
+ // to prevent subtracting two unsigned integers
1112
+ // that can yield incorrect results we should check
1113
+ // if the 'now' is bigger than the timeout for headers or request
1114
const uint64_t now = uv_hrtime();
1115
const uint64_t headers_deadline =
1116
(headers_timeout > 0 && now > headers_timeout) ? now - headers_timeout
0 commit comments