As far as I know, OptionalSslHandler is built for handing both protocols on the same port, while, SniHandler is made for SNI handling.
Both handlers seem to handle all the complex handshake and negotiate steps, then inject a sslHandler in the pipeline.
I know this may not be a good idea, but I would like to know if it possible to add a SniHandler after OptionalSslHandler in Netty 4? like "OptionalSniHandler"...?
Maybe I could achieve it with overwriting OptionalSslHandler to add a SniHandler instead of SslHandler?
Thanks!!!
references: How does netty server supports both Http and Https protocols with a single port? Determine which TLS version was negotiated by client to a Netty server, with SniHandler