From ff5c8a9034026a6d3ae437fa89c9f3cb9a1ba022 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Fri, 3 Oct 2008 20:56:38 +0000 Subject: Cluster join & brain-dumps working. cluster: improved join protocol, fixed race conditions. client/ConnectionHandler,ConnectionImpl: fixed connection close race causing client hang. src/qpid/sys/PollableQueue.h: fixed incorrect use of startWatch/stopWatch. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@701532 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/framing/FieldTable.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cpp/src/qpid/framing/FieldTable.h') diff --git a/cpp/src/qpid/framing/FieldTable.h b/cpp/src/qpid/framing/FieldTable.h index b56e3ce3ba..1b6ef0a124 100644 --- a/cpp/src/qpid/framing/FieldTable.h +++ b/cpp/src/qpid/framing/FieldTable.h @@ -89,6 +89,9 @@ class FieldTable ValueMap::const_iterator end() const { return values.end(); } ValueMap::const_iterator find(const std::string& s) const { return values.find(s); } + std::pair insert(const ValueMap::value_type&); + void clear() { values.clear(); } + // ### Hack Alert ValueMap::iterator getValues() { return values.begin(); } -- cgit v1.2.1