From aacbed9ec082a072101f7a26fd33194176f12442 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Tue, 2 Oct 2007 12:47:30 +0000 Subject: Correction to interpretation of flags (B/E refer to the first/last segment in the frameset and should be set on all frames in such segments). git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@581214 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/framing/SendContent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/qpid/framing/SendContent.cpp') diff --git a/cpp/src/qpid/framing/SendContent.cpp b/cpp/src/qpid/framing/SendContent.cpp index 62a876f7c5..57ac58038b 100644 --- a/cpp/src/qpid/framing/SendContent.cpp +++ b/cpp/src/qpid/framing/SendContent.cpp @@ -60,7 +60,7 @@ void qpid::framing::SendContent::setFlags(AMQFrame& f, bool first, bool last) co { f.setBof(false); f.setBos(first); - f.setEof(last); + f.setEof(true);//content is always the last segment f.setEos(last); } -- cgit v1.2.1