Skip to content
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

Merged
merged 4 commits into from
May 25, 2018

Conversation

zilm13
Copy link
Collaborator

@zilm13 zilm13 commented May 24, 2018

@mkalinin please, take a look

@zilm13 zilm13 requested a review from mkalinin May 24, 2018 18:24
@@ -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;
Copy link
Contributor

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) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe something like isEligibleForConnection?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i like it!

Copy link
Collaborator Author

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) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

isAddressInQueue?

@mkalinin mkalinin merged commit 9436040 into develop May 25, 2018
@zilm13 zilm13 deleted the fix/drop-same-ip branch June 4, 2018 15:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants