io.netty.handler.codec.socksx.v5.Socks5CommandResponse Java Examples
The following examples show how to use
io.netty.handler.codec.socksx.v5.Socks5CommandResponse.
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: Socks5ProxyServer.java From netty-4.1.22 with Apache License 2.0 | 6 votes |
@Override protected boolean handleProxyProtocol(ChannelHandlerContext ctx, Object msg) throws Exception { if (!authenticated) { authenticated = authenticate(ctx, msg); return false; } Socks5CommandRequest req = (Socks5CommandRequest) msg; assertThat(req.type(), is(Socks5CommandType.CONNECT)); Socks5CommandResponse res = new DefaultSocks5CommandResponse(Socks5CommandStatus.SUCCESS, Socks5AddressType.IPv4); intermediaryDestination = SocketUtils.socketAddress(req.dstAddr(), req.dstPort()); ctx.write(res); ctx.pipeline().remove(ENCODER); ctx.pipeline().remove(DECODER); return true; }
Example #2
Source File: ProxyToServerConnection.java From PowerTunnel with MIT License | 5 votes |
@Override void read(ConnectionFlow flow, Object msg) { removeHandlerIfPresent(SOCKS_ENCODER_NAME); removeHandlerIfPresent(SOCKS_DECODER_NAME); if (msg instanceof Socks5CommandResponse) { if (((Socks5CommandResponse) msg).status() == Socks5CommandStatus.SUCCESS) { flow.advance(); return; } } flow.fail(); }