mirror of
https://github.com/moparisthebest/Conversations
synced 2025-02-21 13:11:50 -05:00
11 lines
245 B
Java
11 lines
245 B
Java
![]() |
package de.duenndns.ssl;
|
||
|
|
||
|
import javax.net.ssl.HostnameVerifier;
|
||
|
import javax.net.ssl.SSLSession;
|
||
|
|
||
|
public interface DomainHostnameVerifier extends HostnameVerifier {
|
||
|
|
||
|
boolean verify(String domain, String hostname, SSLSession sslSession);
|
||
|
|
||
|
}
|