summaryrefslogtreecommitdiff
path: root/src/main/java/com/lumaserv/bgp/protocol/attribute/AtomicAggregateAttribute.java
blob: 7cc3aa53ea26550fc69af8ee47e8f2ec094bf7dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.lumaserv.bgp.protocol.attribute;

import java.nio.ByteBuffer;

public class AtomicAggregateAttribute implements PathAttribute {

    public AtomicAggregateAttribute(byte typeCode, byte[] data) {

    }

    public byte getTypeCode() {
        return 6;
    }

    public void build(ByteBuffer b) {
    }

}