Skip to content

Commit

Permalink
SC receive and send: default reconnect set to 'true'.
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsharabayko committed Apr 19, 2024
1 parent 166b41a commit 46c1976
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion xtransmit/generate.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ struct config : public stats_config
int duration = 0;
int message_size = 1316; ////8 * 1024 * 1024;
bool two_way = false;
bool reconnect = false;
bool reconnect = true;
bool enable_metrics = false;
bool spin_wait = false;
std::string playback_csv;
Expand Down
2 changes: 1 addition & 1 deletion xtransmit/receive.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ struct config : stats_config
{
bool print_notifications = false; // Print notifications about the messages received
bool send_reply = false;
bool reconnect = false;
bool reconnect = true;
bool enable_metrics = false;
unsigned metrics_freq_ms = 1000;
std::string metrics_file;
Expand Down

0 comments on commit 46c1976

Please sign in to comment.