diff options
Diffstat (limited to 'cs/src/Ice/ProtocolInstance.cs')
-rw-r--r-- | cs/src/Ice/ProtocolInstance.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cs/src/Ice/ProtocolInstance.cs b/cs/src/Ice/ProtocolInstance.cs index ca7c3b4824a..68c8d33e13f 100644 --- a/cs/src/Ice/ProtocolInstance.cs +++ b/cs/src/Ice/ProtocolInstance.cs @@ -121,6 +121,21 @@ namespace IceInternal } #endif + public BufSizeWarnInfo getBufSizeWarn(short type) + { + return instance_.getBufSizeWarn(type); + } + + public void setSndBufSizeWarn(short type, int size) + { + instance_.setSndBufSizeWarn(type, size); + } + + public void setRcvBufSizeWarn(short type, int size) + { + instance_.setRcvBufSizeWarn(type, size); + } + protected Instance instance_; protected int traceLevel_; protected string traceCategory_; |