diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-03-03 13:05:19 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-03-03 13:05:19 -0330 |
commit | 2fe064b44b5d56c87b65e889bfe898ce2ee737fc (patch) | |
tree | d7cfb49f989a5fffa61791859b260f4048be4efe /cpp/src/Ice/ProtocolInstance.h | |
parent | Fixed (ICE-5835) - Scope of operation parameters (diff) | |
download | ice-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.h | 15 |
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; |