summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/type3/routing/RoutingHOST.java
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2003-10-12 03:24:56 +0000
committerPeter Palfrader <peter@palfrader.org>2003-10-12 03:24:56 +0000
commit2f848cd91f899fe3de2701085ee720b96ba317c0 (patch)
treed64da47fed0404faa5f21b13eb9ce5eac58618b0 /src/org/noreply/fancydress/type3/routing/RoutingHOST.java
parent85eccff05dc687bab86363aa40b61b0d6ed9f6be (diff)
Allow passing a path to the Path class constructor.
Diffstat (limited to 'src/org/noreply/fancydress/type3/routing/RoutingHOST.java')
-rw-r--r--src/org/noreply/fancydress/type3/routing/RoutingHOST.java4
1 files changed, 2 insertions, 2 deletions
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);