Skip to content

Commit e27a015

Browse files
committed
Use a greater timeout
1 parent 3a93c12 commit e27a015

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

async_rrcp_client.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ using boost::asio::ip::tcp;
4646
using namespace std::chrono_literals;
4747

4848
constexpr size_t MAX_LENGTH = 65432;
49-
constexpr auto TIMEOUT_DURATION = 3s;
49+
constexpr auto TIMEOUT_DURATION = 13s;
5050
constexpr auto HEARTBEAT_INTERVAL = 10s;
5151

5252
class async_rrcp_client : public std::enable_shared_from_this< async_rrcp_client >

async_rrcp_client_threadsafe.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ using boost::asio::ip::tcp;
4949
using namespace std::chrono_literals;
5050

5151
constexpr size_t MAX_LENGTH = 65432;
52-
constexpr auto TIMEOUT_DURATION = 3s;
52+
constexpr auto TIMEOUT_DURATION = 13s;
5353
constexpr auto HEARTBEAT_INTERVAL = 10s;
5454

5555
class async_rrcp_client : public std::enable_shared_from_this< async_rrcp_client >

0 commit comments

Comments
 (0)