Skip to content
Snippets Groups Projects
Commit 16633baf authored by Kuang-Ching Wang's avatar Kuang-Ching Wang
Browse files

Merge pull request #349 from brownsys/ofqueue-structs-msgs

OF packet queues are always at least min size
parents 59105bb3 86d67560
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ public class OFPacketQueue {
public OFPacketQueue() {
this.queueId = -1;
this.length = -1;
this.length = U16.t(MINIMUM_LENGTH);
}
public OFPacketQueue(int queueId) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment