es.tid.rsvp.objects.ErrorSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of network-protocols Show documentation
Show all versions of network-protocols Show documentation
BGP-LS,OSPF-TE,PCEP and RSVP-TE protocol encodings.
The newest version!
package es.tid.rsvp.objects;
public abstract class ErrorSpec extends RSVPObject{
public ErrorSpec(byte[] bytes, int offset){
super(bytes, offset);
this.decode(bytes,offset);
}
public ErrorSpec(){
super();
}
public abstract void encode();
public abstract void decode(byte[] bytes, int offset);
}