blob: c893cab1bd5a55e915958a259fd542bfbb8aa320 [file] [log] [blame]
Andreas Wundsamb1c4d532014-10-10 21:33:04 -07001package org.projectfloodlight.openflow.protocol.ver14;
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 ChannelUtilsVer14 {
15 public static Match readOFMatch(final ChannelBuffer bb) throws OFParseError {
16 return OFMatchV3Ver14.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}