Fix incorrect protocol description in FlowRequestData writer/decoder (#1607)
Signed-off-by: yunfeiyanggzq <yunfeiyang@buaa.edu.cn>
This commit is contained in:
parent
ccd029ed0a
commit
c7949f5f4e
|
|
@ -22,7 +22,7 @@ import io.netty.buffer.ByteBuf;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* +-------------------+--------------+----------------+---------------+------------------+
|
* +-------------------+--------------+----------------+---------------+------------------+
|
||||||
* | RequestID(8 byte) | Type(1 byte) | FlowID(4 byte) | Count(4 byte) | PriorityFlag (1) |
|
* | RequestID(8 byte) | Type(1 byte) | FlowID(8 byte) | Count(4 byte) | PriorityFlag (1) |
|
||||||
* +-------------------+--------------+----------------+---------------+------------------+
|
* +-------------------+--------------+----------------+---------------+------------------+
|
||||||
*
|
*
|
||||||
* @author Eric Zhao
|
* @author Eric Zhao
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ import io.netty.buffer.ByteBuf;
|
||||||
* Decoder for {@link FlowRequestData} from {@code ByteBuf} stream. The layout:
|
* Decoder for {@link FlowRequestData} from {@code ByteBuf} stream. The layout:
|
||||||
* </p>
|
* </p>
|
||||||
* <pre>
|
* <pre>
|
||||||
* | flow ID (4) | count (4) | priority flag (1) |
|
* | flow ID (8) | count (4) | priority flag (1) |
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* @author Eric Zhao
|
* @author Eric Zhao
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue