forked from I2P_Developers/i2p.i2p
more @since updates
This commit is contained in:
@ -218,7 +218,7 @@ public class TunnelPoolSettings {
|
||||
/**
|
||||
* Other destinations that use the same tunnel (or null if exploratory)
|
||||
* Modifiable, concurrent, not a copy
|
||||
* @since 0.9.19
|
||||
* @since 0.9.21
|
||||
*/
|
||||
public Set<Hash> getAliases() {
|
||||
return _aliases;
|
||||
@ -227,7 +227,7 @@ public class TunnelPoolSettings {
|
||||
/**
|
||||
* Other destination that this is an alias of (or null).
|
||||
* If non-null, don't build tunnels.
|
||||
* @since 0.9.19
|
||||
* @since 0.9.21
|
||||
*/
|
||||
public Hash getAliasOf() {
|
||||
return _aliasOf;
|
||||
@ -237,7 +237,7 @@ public class TunnelPoolSettings {
|
||||
/**
|
||||
* Set other destination that this is an alias of (or null).
|
||||
* If non-null, don't build tunnels.
|
||||
* @since 0.9.19
|
||||
* @since 0.9.21
|
||||
*/
|
||||
public void setAliasOf(Hash h) {
|
||||
_aliasOf = h;
|
||||
|
@ -15,7 +15,7 @@ import net.i2p.util.Log;
|
||||
* A tunnel pool with its own settings and Destination,
|
||||
* but uses another pool for its tunnels.
|
||||
*
|
||||
* @since 0.9.20
|
||||
* @since 0.9.21
|
||||
*/
|
||||
public class AliasedTunnelPool extends TunnelPool {
|
||||
|
||||
|
@ -441,7 +441,7 @@ public class TunnelPoolManager implements TunnelManagerFacade {
|
||||
* Must have same encryption key an a different signing key.
|
||||
* @throws IllegalArgumentException if not
|
||||
* @return success
|
||||
* @since 0.9.19
|
||||
* @since 0.9.21
|
||||
*/
|
||||
public boolean addAlias(Destination dest, ClientTunnelSettings settings, Destination existingClient) {
|
||||
if (dest.getSigningPublicKey().equals(existingClient.getSigningPublicKey()))
|
||||
@ -485,7 +485,7 @@ public class TunnelPoolManager implements TunnelManagerFacade {
|
||||
|
||||
/**
|
||||
* Remove a destination for the same tunnels as another.
|
||||
* @since 0.9.19
|
||||
* @since 0.9.21
|
||||
*/
|
||||
public void removeAlias(Destination dest) {
|
||||
Hash h = dest.calculateHash();
|
||||
|
Reference in New Issue
Block a user