blob: c194fbc04ca78a9d99239d31a16c3d9f100c6981 [file] [log] [blame]
package org.openflow.protocol.ver12;
import org.jboss.netty.buffer.ChannelBuffer;
import org.openflow.exceptions.OFParseError;
import org.openflow.protocol.OFBsnVportQInQ;
import org.openflow.protocol.OFMatchBmap;
import org.openflow.protocol.match.Match;
/**
* Collection of helper functions for reading and writing into ChannelBuffers
*
* @author capveg
*/
public class ChannelUtilsVer12 {
public static Match readOFMatch(final ChannelBuffer bb) throws OFParseError {
return OFMatchV3Ver12.READER.readFrom(bb);
}
// TODO these need to be figured out / removed
public static OFBsnVportQInQ readOFBsnVportQInQ(ChannelBuffer bb) {
throw new UnsupportedOperationException("not implemented");
}
public static void writeOFBsnVportQInQ(ChannelBuffer bb,
OFBsnVportQInQ vport) {
throw new UnsupportedOperationException("not implemented");
}
public static OFMatchBmap readOFMatchBmap(ChannelBuffer bb) {
throw new UnsupportedOperationException("not implemented");
}
public static void writeOFMatchBmap(ChannelBuffer bb, OFMatchBmap match) {
throw new UnsupportedOperationException("not implemented");
}
}