Skip to content
Snippets Groups Projects
Commit 86d67560 authored by Andrew Ferguson's avatar Andrew Ferguson
Browse files

OF packet queues are always at least min size

parent 6eb8ed93
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