blob: 8216bb050bfb00f031b81f0500ae0ea95ab2aeea [file] [log] [blame]
alshabib1f44e8e2014-08-14 15:19:57 -07001package org.projectfloodlight.openflow.protocol.ver13;
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 ChannelUtilsVer13 {
15 public static Match readOFMatch(final ChannelBuffer bb) throws OFParseError {
16 return OFMatchV3Ver13.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}