KLALB完全大重写,代码规范了,可以当作网络库使用

This commit is contained in:
Administrator
2023-06-23 08:34:15 +08:00
parent 0499ecb34d
commit f743b23e53
154 changed files with 2985 additions and 15058 deletions
@@ -0,0 +1,16 @@
package org.kne.cloud.network.klalb;
public class PINGPacket extends KLALBPacket {
public PINGPacket() {
super(PING);
}
@Override
public String toString() {
return "PING";
}
}