summaryrefslogtreecommitdiff
path: root/src/main/java/com/lumaserv/bgp/protocol/DataBuilder.java
blob: e21ccec352e1d6a8fae31d805b45e66888e692c0 (plain)
1
2
3
4
5
6
7
8
package com.lumaserv.bgp.protocol;

import java.nio.ByteBuffer;

public interface DataBuilder {

    public void build(ByteBuffer b);
}