Package io.netty.internal.tcnative
Interface SniHostNameMatcher
-
public interface SniHostNameMatcher
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
match(long ssl, String hostname)
Returnstrue
if the hostname was matched and so SNI should be allowed.
-
-
-
Method Detail
-
match
boolean match(long ssl, String hostname)
Returnstrue
if the hostname was matched and so SNI should be allowed.- Parameters:
ssl
- the SSL instancehostname
- the hostname to match.- Returns:
true
if the hostname was matched
-
-