forked from I2P_Developers/i2p.i2p
javadoc fixes part 12 (ticket #1894)
This commit is contained in:
@ -94,7 +94,7 @@ class InboundEstablishState {
|
||||
|
||||
/**
|
||||
* @param localPort Must be our external port, otherwise the signature of the
|
||||
& SessionCreated message will be bad if the external port != the internal port.
|
||||
* SessionCreated message will be bad if the external port != the internal port.
|
||||
*/
|
||||
public InboundEstablishState(RouterContext ctx, byte remoteIP[], int remotePort, int localPort,
|
||||
DHSessionKeyBuilder dh) {
|
||||
|
@ -279,6 +279,7 @@ class FragmentedMessage {
|
||||
}
|
||||
****/
|
||||
|
||||
/** toString */
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder buf = new StringBuilder(128);
|
||||
|
@ -158,6 +158,7 @@ class TunnelParticipant {
|
||||
}
|
||||
****/
|
||||
|
||||
/** getCompleteCount */
|
||||
public int getCompleteCount() {
|
||||
if (_handler != null)
|
||||
return _handler.getCompleteCount();
|
||||
|
@ -69,7 +69,7 @@ public class CoDelPriorityBlockingQueue<E extends CDPQEntry> extends PriBlocking
|
||||
private final String STAT_DELAY;
|
||||
public static final int MIN_PRIORITY = 100;
|
||||
private static final int[] PRIORITIES = {MIN_PRIORITY, 200, 300, 400, 500};
|
||||
/** if priority is >= this, never drop */
|
||||
/** if priority is >= this, never drop */
|
||||
public static final int DONT_DROP_PRIORITY = 1000;
|
||||
private static final long BACKLOG_TIME = 2*1000;
|
||||
|
||||
|
@ -21,7 +21,7 @@ import org.xlattice.crypto.filters.BloomSHA1;
|
||||
* See main() for an analysis of false positive rate.
|
||||
* See BloomFilterIVValidator for instantiation parameters.
|
||||
* See DecayingHashSet for a smaller and simpler version.
|
||||
* @see net.i2p.router.tunnel.BloomFilterIVValidator
|
||||
* See net.i2p.router.tunnel.BloomFilterIVValidator
|
||||
* @see net.i2p.router.util.DecayingHashSet
|
||||
*/
|
||||
public class DecayingBloomFilter {
|
||||
|
@ -9,7 +9,7 @@ public class ForwardPortStatus {
|
||||
* for example hostile action on the part of the router. */
|
||||
public static final int PROBABLE_SUCCESS = 2;
|
||||
/** The port forward may have succeeded. Or it may not have. We should
|
||||
* definitely try to check out of band. See UP&P: Many routers say they've
|
||||
* definitely try to check out of band. See UP&P: Many routers say they've
|
||||
* forwarded the port when they haven't. */
|
||||
public static final int MAYBE_SUCCESS = 1;
|
||||
/** The port forward is in progress */
|
||||
|
Reference in New Issue
Block a user