init
This commit is contained in:
@@ -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");
|
||||
}
|
||||
Reference in New Issue
Block a user