summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ProtocolInstance.h
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2015-03-03 13:05:19 -0330
committerDwayne Boone <dwayne@zeroc.com>2015-03-03 13:05:19 -0330
commit2fe064b44b5d56c87b65e889bfe898ce2ee737fc (patch)
treed7cfb49f989a5fffa61791859b260f4048be4efe /cpp/src/Ice/ProtocolInstance.h
parentFixed (ICE-5835) - Scope of operation parameters (diff)
downloadice-2fe064b44b5d56c87b65e889bfe898ce2ee737fc.tar.bz2
ice-2fe064b44b5d56c87b65e889bfe898ce2ee737fc.tar.xz
ice-2fe064b44b5d56c87b65e889bfe898ce2ee737fc.zip
ICE-6116 reduce verbose warnings about socket buffer size
Diffstat (limited to 'cpp/src/Ice/ProtocolInstance.h')
-rw-r--r--cpp/src/Ice/ProtocolInstance.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/cpp/src/Ice/ProtocolInstance.h b/cpp/src/Ice/ProtocolInstance.h
index ebe860016a1..fc757d788e2 100644
--- a/cpp/src/Ice/ProtocolInstance.h
+++ b/cpp/src/Ice/ProtocolInstance.h
@@ -64,6 +64,21 @@ public:
return _secure;
}
+ BufSizeWarnInfo getBufSizeWarn(Ice::Short type)
+ {
+ return _instance->getBufSizeWarn(type);
+ }
+
+ void setSndBufSizeWarn(Ice::Short type, int size)
+ {
+ _instance->setSndBufSizeWarn(type, size);
+ }
+
+ void setRcvBufSizeWarn(Ice::Short type, int size)
+ {
+ _instance->setRcvBufSizeWarn(type, size);
+ }
+
bool preferIPv6() const;
ProtocolSupport protocolSupport() const;
const std::string& defaultHost() const;