List of usage examples for io.netty.buffer ByteBuf writeShort
public abstract ByteBuf writeShort(int value);
From source file:com.ltln.modules.openflow.core.protocol.ver11.OFQueuePropertiesSerializerVer11.java
public static void writeTo(ByteBuf bb, OFQueueProperties e) { bb.writeShort(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver11.OFSwitchConfigFailedCodeSerializerVer11.java
public static void writeTo(ByteBuf bb, OFSwitchConfigFailedCode e) { bb.writeShort(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver11.OFTableModFailedCodeSerializerVer11.java
public static void writeTo(ByteBuf bb, OFTableModFailedCode e) { bb.writeShort(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver12.OFBsnTcpFlagSerializerVer12.java
public static void writeTo(ByteBuf bb, Set<OFBsnTcpFlag> set) { bb.writeShort(toWireValue(set)); }
From source file:com.ltln.modules.openflow.core.protocol.ver12.OFControllerMaxLenSerializerVer12.java
public static void writeTo(ByteBuf bb, OFControllerMaxLen e) { bb.writeShort(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver12.OFOxmClassSerializerVer12.java
public static void writeTo(ByteBuf bb, OFOxmClass e) { bb.writeShort(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver12.OFRoleRequestFailedCodeSerializerVer12.java
public static void writeTo(ByteBuf bb, OFRoleRequestFailedCode e) { bb.writeShort(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver13.OFBsnAnchorSerializerVer13.java
public static void writeTo(ByteBuf bb, OFBsnAnchor e) { bb.writeShort(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver13.OFBsnDecapSerializerVer13.java
public static void writeTo(ByteBuf bb, OFBsnDecap e) { bb.writeShort(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver13.OFBsnLuaUploadFlagsSerializerVer13.java
public static void writeTo(ByteBuf bb, Set<OFBsnLuaUploadFlags> set) { bb.writeShort(toWireValue(set)); }