Registry / networking / netty-handler-proxy

netty-handler-proxy

JSON →
library4.1.135.Finaljavamavenunverified

Netty handler for proxy protocol support, enabling transparent proxy handling in Netty-based network applications.

<dependency> <groupId>io.netty</groupId> <artifactId>netty-handler-proxy</artifactId> <version>4.1.135.Final</version> </dependency>
INSTALL
IMPORT
SIG · NETTY-HANDLER-PROX
N
netty-handler-proxy
networkingjavav4.1.135.Final
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ProxyHandler
io.netty.handler.proxy.ProxyHandler

Adds a SOCKS5 proxy handler to a Netty channel pipeline.

import io.netty.handler.proxy.ProxyHandler; import io.netty.handler.proxy.Socks5ProxyHandler; import io.netty.channel.ChannelPipeline; import io.netty.channel.socket.nio.NioSocketChannel; import java.net.InetSocketAddress; public class Quickstart { public static void main(String[] args) { ProxyHandler proxyHandler = new Socks5ProxyHandler(new InetSocketAddress("proxy.example.com", 1080)); ChannelPipeline pipeline = new NioSocketChannel().pipeline(); pipeline.addLast(proxyHandler); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
4.1.135.Finallatest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
netty-handler-proxy — mvn dependency:get netty-handler-proxy · libregistry