blob: b090e47110c5fb1ce605a4db342922a62860de6a [file] [log] [blame]
alshabib1f44e8e2014-08-14 15:19:57 -07001package org.projectfloodlight.openflow.protocol.ver11;
2
3import org.jboss.netty.buffer.ChannelBuffer;
4import org.projectfloodlight.openflow.exceptions.OFParseError;
5import org.projectfloodlight.openflow.protocol.OFMatchBmap;
6import org.projectfloodlight.openflow.protocol.match.Match;
7
8/**
9 * Collection of helper functions for reading and writing into ChannelBuffers
10 *
11 * @author capveg
12 */
13
14public class ChannelUtilsVer11 {
15 public static Match readOFMatch(final ChannelBuffer bb) throws OFParseError {
16 return OFMatchV2Ver11.READER.readFrom(bb);
17 }
18
19 public static OFMatchBmap readOFMatchBmap(ChannelBuffer bb) {
20 throw new UnsupportedOperationException("not implemented");
21 }
22
23 public static void writeOFMatchBmap(ChannelBuffer bb, OFMatchBmap match) {
24 throw new UnsupportedOperationException("not implemented");
25 }
26}