Uses of Interface
io.netty.handler.ipfilter.IpFilterRule
-
Packages that use IpFilterRule Package Description io.netty.handler.ipfilter Package to filter IP addresses (allow/deny). -
-
Uses of IpFilterRule in io.netty.handler.ipfilter
Classes in io.netty.handler.ipfilter that implement IpFilterRule Modifier and Type Class Description class
IpSubnetFilterRule
Use this class to create rules forRuleBasedIpFilter
that group IP addresses into subnets.(package private) static class
IpSubnetFilterRule.Ip4SubnetFilterRule
(package private) static class
IpSubnetFilterRule.Ip6SubnetFilterRule
Fields in io.netty.handler.ipfilter declared as IpFilterRule Modifier and Type Field Description private IpFilterRule
IpSubnetFilterRule. filterRule
Fields in io.netty.handler.ipfilter with type parameters of type IpFilterRule Modifier and Type Field Description private java.util.List<IpFilterRule>
RuleBasedIpFilter. rules
Methods in io.netty.handler.ipfilter that return IpFilterRule Modifier and Type Method Description (package private) IpFilterRule
IpSubnetFilterRule. getFilterRule()
private static IpFilterRule
IpSubnetFilterRule. selectFilterRule(java.net.InetAddress ipAddress, int cidrPrefix, IpFilterRuleType ruleType)
Constructors in io.netty.handler.ipfilter with parameters of type IpFilterRule Constructor Description RuleBasedIpFilter(boolean acceptIfNotFound, IpFilterRule... rules)
Create new Instance ofRuleBasedIpFilter
and filter incoming connections based on their IP address andrules
applied.RuleBasedIpFilter(IpFilterRule... rules)
Create new Instance ofRuleBasedIpFilter
and filter incoming connections based on their IP address andrules
applied.
-