Files
KLALB/src/org/kne/cloud/network/srv6/PAD1SegmentRoutingTLV.java
T

21 lines
379 B
Java

package org.kne.cloud.network.srv6;
import java.nio.ByteBuffer;
public class PAD1SegmentRoutingTLV extends IPv6SegmentRoutingTLV {
public PAD1SegmentRoutingTLV(int type) {
super(type);
}
public PAD1SegmentRoutingTLV(ByteBuffer klalbHeader) {
super(klalbHeader);
}
@Override
public String toString() {
return "PAD1SegmentRoutingTLV []";
}
}