diff options
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; |