Revert "Fixed ClassCastException in setting min,max sctp streams"
This reverts commit 276d619afb
.
This commit is contained in:
parent
d83daf0530
commit
488ffb11d8
@ -26,7 +26,6 @@ import io.netty.channel.RecvByteBufAllocator;
|
|||||||
import io.netty.util.internal.PlatformDependent;
|
import io.netty.util.internal.PlatformDependent;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import static io.netty.channel.sctp.SctpChannelOption.*;
|
import static io.netty.channel.sctp.SctpChannelOption.*;
|
||||||
@ -88,8 +87,7 @@ public class DefaultSctpChannelConfig extends DefaultChannelConfig implements Sc
|
|||||||
} else if (option == SCTP_NODELAY) {
|
} else if (option == SCTP_NODELAY) {
|
||||||
setSctpNoDelay((Boolean) value);
|
setSctpNoDelay((Boolean) value);
|
||||||
} else if (option == SCTP_INIT_MAXSTREAMS) {
|
} else if (option == SCTP_INIT_MAXSTREAMS) {
|
||||||
List<Integer> minMax = (List<Integer>) value;
|
setInitMaxStreams((SctpStandardSocketOptions.InitMaxStreams) value);
|
||||||
setInitMaxStreams(SctpStandardSocketOptions.InitMaxStreams.create(minMax.get(0), minMax.get(1)));
|
|
||||||
} else {
|
} else {
|
||||||
return super.setOption(option, value);
|
return super.setOption(option, value);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user