io.netty.handler.codec.socksx.v5.DefaultSocks5PasswordAuthRequest Java Examples

The following examples show how to use io.netty.handler.codec.socksx.v5.DefaultSocks5PasswordAuthRequest. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ProxyToServerConnection.java    From PowerTunnel with MIT License 5 votes vote down vote up
@Override
protected Future<?> execute() {
    DefaultSocks5PasswordAuthRequest authRequest = new DefaultSocks5PasswordAuthRequest(
            username != null ? username : "", password != null ? password : "");

    addFirstOrReplaceHandler(SOCKS_DECODER_NAME, new Socks5PasswordAuthResponseDecoder());
    return writeToChannel(authRequest);
}