grpc/grpc-java

Add support for HAProxy Protocol ("proxy protocol")

Open

#8,949 opened on Feb 28, 2022

View on GitHub
 (12 comments) (0 reactions) (0 assignees)Java (11,124 stars) (3,742 forks)batch import
enhancementhelp wanted

Description

Is there a way to add a CustomHandler to ChannelPipeline using NettyServerBuilder ?

I initialize my GrpcNettyServer by below:

NettyServerBuilder serverBuilder = 
    NettyServerBuilder
      .forPort(config.getPort())
      .addService();
      .intercept();
      .executor();
      .build();

All I want is to get the channel from the server and add a custom handler to the channel pipeline. Does NettyServerBuilder supports that option ?

Contributor guide