重发数据包优先

This commit is contained in:
Administrator
2023-01-05 08:19:54 +08:00
parent 62b22410a3
commit ea97e3891f
11 changed files with 428 additions and 42 deletions
+13
View File
@@ -0,0 +1,13 @@
package org.kne.io;
public class Data {
byte[]b;
int off,len;
public Data(byte[] b, int off, int len) {
super();
this.b = b;
this.off = off;
this.len = len;
}
}