-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refuse connection from ips that are already in processing queue #1082
Conversation
@@ -115,6 +92,43 @@ public void initChannel(NioSocketChannel ch) throws Exception { | |||
logger.error("Unexpected error: ", e); | |||
} | |||
} | |||
|
|||
private boolean shouldRefuseIncoming(NioSocketChannel ch) { | |||
if(!isInbound()) return false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's better to check it outside
@@ -115,6 +92,43 @@ public void initChannel(NioSocketChannel ch) throws Exception { | |||
logger.error("Unexpected error: ", e); | |||
} | |||
} | |||
|
|||
private boolean shouldRefuseIncoming(NioSocketChannel ch) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe something like isEligibleForConnection
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i like it!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
almost )
* @param peerAddr Peer address | ||
* @return true if we already have connection from this address, otherwise false | ||
*/ | ||
public boolean ipAlreadyWaiting(InetAddress peerAddr) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isAddressInQueue
?
@mkalinin please, take a look