diff options
Diffstat (limited to 'src/main/java/com/lumaserv/bgp/protocol/attribute/AtomicAggregateAttribute.java')
-rw-r--r-- | src/main/java/com/lumaserv/bgp/protocol/attribute/AtomicAggregateAttribute.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/com/lumaserv/bgp/protocol/attribute/AtomicAggregateAttribute.java b/src/main/java/com/lumaserv/bgp/protocol/attribute/AtomicAggregateAttribute.java index 6f7e479..7cc3aa5 100644 --- a/src/main/java/com/lumaserv/bgp/protocol/attribute/AtomicAggregateAttribute.java +++ b/src/main/java/com/lumaserv/bgp/protocol/attribute/AtomicAggregateAttribute.java @@ -1,5 +1,7 @@ package com.lumaserv.bgp.protocol.attribute; +import java.nio.ByteBuffer; + public class AtomicAggregateAttribute implements PathAttribute { public AtomicAggregateAttribute(byte typeCode, byte[] data) { @@ -10,8 +12,7 @@ public class AtomicAggregateAttribute implements PathAttribute { return 6; } - public byte[] build() { - return new byte[0]; + public void build(ByteBuffer b) { } } |