org.rx.net.shadowsocks.SSCommon Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib Show documentation
Show all versions of rxlib Show documentation
A set of utilities for Java
package org.rx.net.shadowsocks;
import io.netty.handler.codec.socksx.v5.Socks5CommandRequest;
import io.netty.util.AttributeKey;
import org.rx.net.shadowsocks.encryption.ICrypto;
import java.net.InetSocketAddress;
public class SSCommon {
public static final AttributeKey IS_UDP = AttributeKey.valueOf("IS_UDP");
public static final AttributeKey CIPHER = AttributeKey.valueOf("CIPHER");
public static final AttributeKey REMOTE_ADDRESS = AttributeKey.valueOf("REMOTE_ADDRESS");
public static final AttributeKey REMOTE_DEST = AttributeKey.valueOf("REMOTE_DEST");
public static final AttributeKey REMOTE_SRC = AttributeKey.valueOf("REMOTE_SRC");
public static final AttributeKey REMOTE_SOCKS5_DEST = AttributeKey.valueOf("REMOTE_SOCKS5_DEST");
}