diff options
author | Mark Spruiell <mes@zeroc.com> | 2015-11-06 11:24:22 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2015-11-06 11:24:22 -0800 |
commit | 61f9f44b8eda9c9cdb9139436d4ad87e6e7d5839 (patch) | |
tree | 286025a254ce57d02068551f11cf69b89fa66a72 /cpp/src/Ice/ProtocolInstance.cpp | |
parent | A few changes to support move of Freeze (diff) | |
download | ice-61f9f44b8eda9c9cdb9139436d4ad87e6e7d5839.tar.bz2 ice-61f9f44b8eda9c9cdb9139436d4ad87e6e7d5839.tar.xz ice-61f9f44b8eda9c9cdb9139436d4ad87e6e7d5839.zip |
initial commit of C++ Bluetooth transport
Diffstat (limited to 'cpp/src/Ice/ProtocolInstance.cpp')
-rw-r--r-- | cpp/src/Ice/ProtocolInstance.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cpp/src/Ice/ProtocolInstance.cpp b/cpp/src/Ice/ProtocolInstance.cpp index c9b26c56f7e..c365abad9c6 100644 --- a/cpp/src/Ice/ProtocolInstance.cpp +++ b/cpp/src/Ice/ProtocolInstance.cpp @@ -44,6 +44,30 @@ IceInternal::ProtocolInstance::ProtocolInstance(const InstancePtr& instance, Sho { } +const LoggerPtr& +IceInternal::ProtocolInstance::logger() const +{ + return _instance->initializationData().logger; +} + +BufSizeWarnInfo +IceInternal::ProtocolInstance::getBufSizeWarn(Short type) +{ + return _instance->getBufSizeWarn(type); +} + +void +IceInternal::ProtocolInstance::setSndBufSizeWarn(Short type, int size) +{ + _instance->setSndBufSizeWarn(type, size); +} + +void +IceInternal::ProtocolInstance::setRcvBufSizeWarn(Short type, int size) +{ + _instance->setRcvBufSizeWarn(type, size); +} + bool IceInternal::ProtocolInstance::preferIPv6() const { |