You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
433 B
13 lines
433 B
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");
|
|
}
|
|
|