This commit is contained in:
chenhaodong
2023-07-05 11:06:03 +08:00
parent 8de47479c5
commit 7c55f8da61
234 changed files with 54941 additions and 18 deletions
+13
View File
@@ -0,0 +1,13 @@
package org.fengfei.lanproxy.server;
import io.netty.channel.Channel;
import io.netty.util.AttributeKey;
public interface Constants {
public static final AttributeKey<Channel> NEXT_CHANNEL = AttributeKey.newInstance("nxt_channel");
public static final AttributeKey<String> USER_ID = AttributeKey.newInstance("user_id");
public static final AttributeKey<String> CLIENT_KEY = AttributeKey.newInstance("client_key");
}