Package org.glassfish.grizzly.sni
Interface SNIServerConfigResolver
public interface SNIServerConfigResolver
The server-side SNI config resolver, which could be used to customize
SSLEngineConfigurator based on the SNI host name information sent
from client.- Author:
- Alexey Stashok
-
Method Summary
-
Method Details
-
resolve
ReturnsSNIConfigfor the newConnection,nullvalue means use defaultSSLBaseFilter.getServerSSLEngineConfigurator(). TheSNIConfigcould be created like:SNIConfig.serverConfigBuilder() .sslEngineConfigurator(myHostSSLEngineConfigurator) .build();- Parameters:
connection-hostname- the SNI host name sent by a client- Returns:
SNIConfigfor the newConnection,nullvalue means use defaultSSLBaseFilter.getServerSSLEngineConfigurator()
-