summaryrefslogtreecommitdiff
path: root/src/options.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.hpp')
-rw-r--r--src/options.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/options.hpp b/src/options.hpp
index e6df505..38c6982 100644
--- a/src/options.hpp
+++ b/src/options.hpp
@@ -59,8 +59,12 @@ namespace zmq
// Linger time, in milliseconds.
int linger;
- // Interval between attempts to reconnect, in milliseconds.
+ // Minimum interval between attempts to reconnect, in milliseconds.
+ // Default 100ms
int reconnect_ivl;
+ // Maximum interval between attempts to reconnect, in milliseconds.
+ // Default 0 (unused)
+ int reconnect_ivl_max;
// Maximum backlog for pending connections.
int backlog;