Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

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 subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants