summaryrefslogtreecommitdiffstats
path: root/src/msg/async/ProtocolV1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/msg/async/ProtocolV1.h')
-rw-r--r--src/msg/async/ProtocolV1.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/msg/async/ProtocolV1.h b/src/msg/async/ProtocolV1.h
index 1b7c1d2b5f8..63bc1cd0946 100644
--- a/src/msg/async/ProtocolV1.h
+++ b/src/msg/async/ProtocolV1.h
@@ -112,7 +112,12 @@ protected:
bool is_prepared {false};
};
// priority queue for outbound msgs
- std::map<int, std::list<out_q_entry_t>> out_q;
+
+ /**
+ * A queue for each priority value, highest priority first.
+ */
+ std::map<int, std::list<out_q_entry_t>, std::greater<int>> out_q;
+
bool keepalive;
bool write_in_progress = false;