summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/type3/routing
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/noreply/fancydress/type3/routing')
-rw-r--r--src/org/noreply/fancydress/type3/routing/RoutingHOST.java4
-rw-r--r--src/org/noreply/fancydress/type3/routing/RoutingIP4.java4
2 files changed, 4 insertions, 4 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);
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);