Package | Description |
---|---|
org.jboss.netty.handler.ipfilter |
Implementation of a Ip based Filter handlers.
|
Modifier and Type | Class and Description |
---|---|
class |
IpFilteringHandlerImpl
General class that handle Ip Filtering.
|
class |
IpFilterRuleHandler
Implementation of Filter of IP based on ALLOW and DENY rules.
This implementation could be changed by implementing a new IpFilterRule than default
IpV4SubnetFilterRule (IPV4 support only), IpSubnetFilterRule (IPV4 and IPV6 support)
or IpFilterRule (IP and host name string pattern support) .The check is done by going from step to step in the underlying array of IpFilterRule. Each IpFilterRule answers to the method accept if the InetAddress is accepted or not,
according to its implementation. |
class |
OneIpFilterHandler
Handler that block any new connection if there are already a currently active
channel connected with the same InetAddress (IP).
Take care to not change isBlocked method except if you know what you are doing since it is used to test if the current closed connection is to be removed or not from the map of currently connected channel. |
Copyright © 2008–2023 The Netty Project. All rights reserved.