javadoc fixes part 12 (ticket #1894)

This commit is contained in:
zzz
2017-01-27 02:27:53 +00:00
parent 82064760d5
commit 9dab3b0dfe
11 changed files with 23 additions and 20 deletions

View File

@ -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) {

View File

@ -279,6 +279,7 @@ class FragmentedMessage {
}
****/
/** toString */
@Override
public String toString() {
StringBuilder buf = new StringBuilder(128);

View File

@ -158,6 +158,7 @@ class TunnelParticipant {
}
****/
/** getCompleteCount */
public int getCompleteCount() {
if (_handler != null)
return _handler.getCompleteCount();

View File

@ -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 &gt;= this, never drop */
public static final int DONT_DROP_PRIORITY = 1000;
private static final long BACKLOG_TIME = 2*1000;

View File

@ -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 {

View File

@ -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&amp;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 */