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 | 17 |
1 files changed, 17 insertions, 0 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 new file mode 100644 index 0000000..6f7e479 --- /dev/null +++ b/src/main/java/com/lumaserv/bgp/protocol/attribute/AtomicAggregateAttribute.java @@ -0,0 +1,17 @@ +package com.lumaserv.bgp.protocol.attribute; + +public class AtomicAggregateAttribute implements PathAttribute { + + public AtomicAggregateAttribute(byte typeCode, byte[] data) { + + } + + public byte getTypeCode() { + return 6; + } + + public byte[] build() { + return new byte[0]; + } + +} |