summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/com/lumaserv/bgp/protocol/attribute/TunnelEncapsAttribute.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/com/lumaserv/bgp/protocol/attribute/TunnelEncapsAttribute.java b/src/main/java/com/lumaserv/bgp/protocol/attribute/TunnelEncapsAttribute.java
index df3ee42..1f44199 100644
--- a/src/main/java/com/lumaserv/bgp/protocol/attribute/TunnelEncapsAttribute.java
+++ b/src/main/java/com/lumaserv/bgp/protocol/attribute/TunnelEncapsAttribute.java
@@ -189,6 +189,7 @@ public class TunnelEncapsAttribute implements PathAttribute {
}
offset += 2;
+ System.out.println("Tunnel: " + src + "," + offset + "," + publicKey);
System.arraycopy(src, offset, publicKey, 0, 32);
offset += 32;
@@ -256,6 +257,7 @@ public class TunnelEncapsAttribute implements PathAttribute {
@Override
public String toString() {
return "WireGuard:"
+ + ((flags & FLAG_TYPE_2) != 0 ? " type 2" : " type 1")
+ ((flags & FLAG_PERSISTENT_KEEPALIVE) != 0 ? " persistent keepalive:" + persistentKeepalive : "")
+ " public key:" + Base64.getEncoder().encodeToString(publicKey)
+ ((flags & FLAG_PROTOCOL_VERSION) != 0 ? " protocol version:" + protocolVersion : "")