From 5a1b8a846bdfa5cb517da0c507f3dc3a8ceec25d Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Mon, 29 Jan 2007 16:13:24 +0000 Subject: * Added ClientAdapter - client side ChannelAdapter. Updated client side. * Moved ChannelAdapter initialization from ctor to init(), updated broker side. * Improved various exception messages with boost::format messages. * Removed unnecssary virtual inheritance. * Widespread: fixed incorrect non-const ProtocolVersion& parameters. * Client API: pass channels by reference, not pointer. * codegen: - MethodBodyClass.h.templ: Added CLASS_ID, METHOD_ID and isA() template. - Various: fixed non-const ProtocolVersion& parameters. * cpp/bootstrap: Allow config arguments with -build. * cpp/gen/Makefile.am: Merged codegen fixes from trunk. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@501087 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/lib/common/sys/apr/APRSocket.cpp | 2 +- cpp/lib/common/sys/apr/APRSocket.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/lib/common/sys') diff --git a/cpp/lib/common/sys/apr/APRSocket.cpp b/cpp/lib/common/sys/apr/APRSocket.cpp index 4917803370..621a66b919 100644 --- a/cpp/lib/common/sys/apr/APRSocket.cpp +++ b/cpp/lib/common/sys/apr/APRSocket.cpp @@ -59,7 +59,7 @@ void APRSocket::close(){ } } -bool APRSocket::isOpen(){ +bool APRSocket::isOpen() const { return !closed; } diff --git a/cpp/lib/common/sys/apr/APRSocket.h b/cpp/lib/common/sys/apr/APRSocket.h index 53f1055c6a..d4274300f2 100644 --- a/cpp/lib/common/sys/apr/APRSocket.h +++ b/cpp/lib/common/sys/apr/APRSocket.h @@ -36,7 +36,7 @@ namespace sys { void read(qpid::framing::Buffer& b); void write(qpid::framing::Buffer& b); void close(); - bool isOpen(); + bool isOpen() const; u_int8_t read(); ~APRSocket(); }; -- cgit v1.2.1