Package | Description |
---|---|
com.hp.of.json |
JSON factory and codecs for Openflow structures.
|
com.hp.of.lib |
OpenFlow Protocol Library.
|
com.hp.of.lib.dt |
A set of classes representing data values used in the OpenFlow protocol.
|
com.hp.of.lib.msg |
Representations of OpenFlow Protocol Messages.
|
Modifier and Type | Method and Description |
---|---|
static BufferId |
CodecUtils.decodeBufferId(com.fasterxml.jackson.databind.JsonNode value)
Converts JsonNode into BufferId object.
|
Modifier and Type | Method and Description |
---|---|
static long |
CodecUtils.encodeBufferId(BufferId bufferId)
Converts BufferId into String that can be used as a JSON value.
|
Modifier and Type | Method and Description |
---|---|
BufferId |
OfPacketReader.readBufferId()
Reads a (u32) buffer id from the buffer.
|
Modifier and Type | Method and Description |
---|---|
void |
OfPacketWriter.write(BufferId id)
Writes a buffer id (u32) to the buffer.
|
Modifier and Type | Field and Description |
---|---|
static BufferId |
BufferId.NO_BUFFER
Denotes no buffer available on the switch.
|
Modifier and Type | Method and Description |
---|---|
static BufferId |
BufferId.bid(String s)
Convenience method that invokes
valueOf(String) . |
static BufferId |
BufferId.valueOf(byte[] bytes)
Returns an object that represents the buffer identifier
defined by the specified byte array.
|
static BufferId |
BufferId.valueOf(long bid)
Returns an object that represents the buffer ID defined by the
specified long value.
|
static BufferId |
BufferId.valueOf(String s)
Returns an object that represents the buffer ID defined by the
specified string.
|
Modifier and Type | Method and Description |
---|---|
int |
BufferId.compareTo(BufferId o)
Implements the Comparable interface, to return buffer IDs in
natural order.
|
Modifier and Type | Method and Description |
---|---|
BufferId |
OfmPacketIn.getBufferId()
ID assigned by datapath (BufferId.NO_BUFFER if none); since 1.0.
|
BufferId |
OfmFlowMod.getBufferId()
Returns the ID of the packet buffer; Since 1.0.
This may be OFP_NO_BUFFER . |
BufferId |
OfmPacketOut.getBufferId()
Returns the buffer ID assigned by datapath
(BufferId.NO_BUFFER if none); since 1.0.
|
Modifier and Type | Method and Description |
---|---|
OfmMutablePacketOut |
OfmMutablePacketOut.bufferId(BufferId bufferId)
Sets the buffer id; Since 1.0.
|
OfmMutablePacketIn |
OfmMutablePacketIn.bufferId(BufferId bufferId)
Sets the buffer id; Since 1.0.
|
OfmMutableFlowMod |
OfmMutableFlowMod.bufferId(BufferId bufferId)
Sets the buffer id; Since 1.0.
|
Copyright © 2015. All Rights Reserved.