File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ class HttpRequest : public BaseStream {
335335 }
336336
337337 // / Defines the client timeout in ms
338- void setTimeout (int timeoutMs) { clientTimeout = timeoutMs; }
338+ void setTimeout (size_t timeoutMs) { clientTimeout = timeoutMs; }
339339
340340 // / we are sending the data chunked
341341 bool isChunked () { return request_header.isChunked (); }
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ class CatStream : public BaseStream {
230230 }
231231
232232 // / Defines the timout the system waits for data when moving to the next stream
233- void setTimeout (uint32_t t) { _timeout = t; }
233+ void setTimeout (size_t t) { _timeout = t; }
234234
235235 // / not supported
236236 size_t write (const uint8_t *data, size_t size) override { return 0 ;};
You can’t perform that action at this time.
0 commit comments