Files
redkale/src-plugin/com/wentch/redkale/net/icep/stun/StunAttribute.java
地平线 3b8dc74504
2015-09-19 16:17:07 +08:00

24 lines
614 B
Java

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.wentch.redkale.net.icep.stun;
import java.nio.*;
/**
*
* @author zhangjx
*/
public abstract class StunAttribute {
public abstract StunAttribute decode(final ByteBuffer buffer, final byte[] transactionid);
public abstract ByteBuffer encode(final ByteBuffer buffer, final byte[] transactionid);
public abstract short getAttributeid();
public abstract String getName();
}