Skip to content

Commit ae3f8ca

Browse files
update in sourcode: commented the change
1 parent 954e489 commit ae3f8ca

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/node_http_parser.cc

+5
Original file line numberDiff line numberDiff line change
@@ -1106,6 +1106,11 @@ void ConnectionsList::Expired(const FunctionCallbackInfo<Value>& args) {
11061106
std::swap(headers_timeout, request_timeout);
11071107
}
11081108

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
11091114
const uint64_t now = uv_hrtime();
11101115
const uint64_t headers_deadline =
11111116
(headers_timeout > 0 && now > headers_timeout) ? now - headers_timeout

0 commit comments

Comments
 (0)