summaryrefslogtreecommitdiff
path: root/src/pgm_sender.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-10-15 10:58:19 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-10-15 10:58:19 +0200
commitb64b50ae218dbbc362eaeb0571a337650f623e3c (patch)
tree38247a0addc1da446a54f6621a7aab68227514c1 /src/pgm_sender.hpp
parente288f7a347eb5a2fd38043d930fc67c8e8bcce9b (diff)
Timers correctly canceled by PGM engines on shutdown.
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/pgm_sender.hpp')
-rw-r--r--src/pgm_sender.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pgm_sender.hpp b/src/pgm_sender.hpp
index 6d3ae31..9270ba0 100644
--- a/src/pgm_sender.hpp
+++ b/src/pgm_sender.hpp
@@ -66,7 +66,8 @@ namespace zmq
enum {tx_timer_id = 0xa0, rx_timer_id = 0xa1};
// Timers are running.
- bool has_tx_timer, has_rx_timer;
+ bool has_tx_timer;
+ bool has_rx_timer;
// Message encoder.
encoder_t encoder;