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 {
335
335
}
336
336
337
337
// / Defines the client timeout in ms
338
- void setTimeout (int timeoutMs) { clientTimeout = timeoutMs; }
338
+ void setTimeout (size_t timeoutMs) { clientTimeout = timeoutMs; }
339
339
340
340
// / we are sending the data chunked
341
341
bool isChunked () { return request_header.isChunked (); }
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ class CatStream : public BaseStream {
230
230
}
231
231
232
232
// / 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; }
234
234
235
235
// / not supported
236
236
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