From 2f848cd91f899fe3de2701085ee720b96ba317c0 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Sun, 12 Oct 2003 03:24:56 +0000 Subject: Allow passing a path to the Path class constructor. --- src/org/noreply/fancydress/type3/routing/RoutingHOST.java | 4 ++-- src/org/noreply/fancydress/type3/routing/RoutingIP4.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/org/noreply/fancydress/type3/routing') diff --git a/src/org/noreply/fancydress/type3/routing/RoutingHOST.java b/src/org/noreply/fancydress/type3/routing/RoutingHOST.java index 2203ac8..933bfec 100644 --- a/src/org/noreply/fancydress/type3/routing/RoutingHOST.java +++ b/src/org/noreply/fancydress/type3/routing/RoutingHOST.java @@ -31,7 +31,7 @@ public class RoutingHOST extends RoutingForward { * * @param hostname host name of the next hop * @param port TCP port at which the next hop is listening - * @param keyid keyid of the packet key + * @param keyid keyid of the identity key * @param boolean if true, have a SWAP-FWD/HOST routing type, FWD/HOST otherwhise */ private RoutingHOST(String hostname, int port, byte[] keyid, boolean asSwap) { @@ -50,7 +50,7 @@ public class RoutingHOST extends RoutingForward { * * @param hostname host name of the next hop * @param port TCP port at which the next hop is listening - * @param keyid keyid of the packet key + * @param keyid keyid of the identity key */ public RoutingHOST(String hostname, int port, byte[] keyid) { this(hostname, port, keyid, false); diff --git a/src/org/noreply/fancydress/type3/routing/RoutingIP4.java b/src/org/noreply/fancydress/type3/routing/RoutingIP4.java index 9a98c3a..08e1ce1 100644 --- a/src/org/noreply/fancydress/type3/routing/RoutingIP4.java +++ b/src/org/noreply/fancydress/type3/routing/RoutingIP4.java @@ -33,7 +33,7 @@ public class RoutingIP4 extends RoutingForward { * * @param ip IP address of the next hop * @param port TCP port at which the next hop is listening - * @param keyid keyid of the packet key + * @param keyid keyid of the identity key * @param boolean if true, have a SWAP-FWD/IP4 routing type, FWD/IP4 otherwhise */ private RoutingIP4(InetAddress ip, int port, byte[] keyid, boolean asSwap) { @@ -54,7 +54,7 @@ public class RoutingIP4 extends RoutingForward { * * @param ip IP address of the next hop * @param port TCP port at which the next hop is listening - * @param keyid keyid of the packet key + * @param keyid keyid of the identity key */ public RoutingIP4(InetAddress ip, int port, byte[] keyid) { this(ip, port, keyid, false); -- cgit v1.2.3