From f739d191af76b1b22416f914212153db40abc17d Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Mon, 8 Dec 2008 02:18:03 +0000 Subject: OutputControl and subclasses: added giveReadCredit() for IO level flow control. Cluster: Set read credit limit for cluster connections. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@724233 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/sys/ssl/SslHandler.cpp | 4 ++++ cpp/src/qpid/sys/ssl/SslHandler.h | 1 + 2 files changed, 5 insertions(+) (limited to 'cpp/src/qpid/sys/ssl') diff --git a/cpp/src/qpid/sys/ssl/SslHandler.cpp b/cpp/src/qpid/sys/ssl/SslHandler.cpp index 4177ca294c..3c7e2190e7 100644 --- a/cpp/src/qpid/sys/ssl/SslHandler.cpp +++ b/cpp/src/qpid/sys/ssl/SslHandler.cpp @@ -80,6 +80,10 @@ void SslHandler::activateOutput() { aio->notifyPendingWrite(); } +void SslHandler::giveReadCredit(int32_t) { + // FIXME aconway 2008-12-05: not yet implemented. +} + // Input side void SslHandler::readbuff(SslIO& , SslIO::BufferBase* buff) { if (readError) { diff --git a/cpp/src/qpid/sys/ssl/SslHandler.h b/cpp/src/qpid/sys/ssl/SslHandler.h index cce5ecf09b..ae654d7ad2 100644 --- a/cpp/src/qpid/sys/ssl/SslHandler.h +++ b/cpp/src/qpid/sys/ssl/SslHandler.h @@ -58,6 +58,7 @@ class SslHandler : public OutputControl { // Output side void close(); void activateOutput(); + void giveReadCredit(int32_t); // Input side void readbuff(SslIO& aio, SslIOBufferBase* buff); -- cgit v1.2.1