Class PeerMessageLimiter
- java.lang.Object
-
- com.biglybt.core.peermanager.utils.PeerMessageLimiter
-
public class PeerMessageLimiter extends java.lang.Object
Handles incoming peer message counting/timing/stats in order to catch and block abusive peers.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
PeerMessageLimiter.CountData
-
Field Summary
Fields Modifier and Type Field Description private java.util.HashMap
message_counts
-
Constructor Summary
Constructors Constructor Description PeerMessageLimiter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
countIncomingMessage(java.lang.String message_id, int max_counts, int time_limit_ms)
Add the reception of the given message to time-limited count.
-
-
-
Method Detail
-
countIncomingMessage
public boolean countIncomingMessage(java.lang.String message_id, int max_counts, int time_limit_ms)
Add the reception of the given message to time-limited count.- Parameters:
message_id
- message to countmax_counts
- max counts allowed within the given time limittime_limit_ms
- time in ms that the count limiting applies- Returns:
- true if the added count is within acceptable time limits, false if there have been too many counts
-
-