Uses of Class
io.netty.handler.ipfilter.IpSubnetFilterRule
-
Packages that use IpSubnetFilterRule Package Description io.netty.handler.ipfilter Package to filter IP addresses (allow/deny). -
-
Uses of IpSubnetFilterRule in io.netty.handler.ipfilter
Methods in io.netty.handler.ipfilter with parameters of type IpSubnetFilterRule Modifier and Type Method Description int
IpSubnetFilterRule. compareTo(IpSubnetFilterRule ipSubnetFilterRule)
Constructors in io.netty.handler.ipfilter with parameters of type IpSubnetFilterRule Constructor Description IpSubnetFilter(boolean acceptIfNotFound, IpSubnetFilterRule... rules)
Create newIpSubnetFilter
Instance with specifiedIpSubnetFilterRule
as array and specify if we'll accept a connection if we don't find it in the rule(s).IpSubnetFilter(IpSubnetFilterRule... rules)
Create newIpSubnetFilter
Instance with specifiedIpSubnetFilterRule
as array.Constructor parameters in io.netty.handler.ipfilter with type arguments of type IpSubnetFilterRule Constructor Description IpSubnetFilter(boolean acceptIfNotFound, java.util.List<IpSubnetFilterRule> rules)
Create newIpSubnetFilter
Instance with specifiedIpSubnetFilterRule
asList
and specify if we'll accept a connection if we don't find it in the rule(s).IpSubnetFilter(java.util.List<IpSubnetFilterRule> rules)
-