All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rx.net.shadowsocks.SSCommon Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy