mirror of
https://github.com/moparisthebest/Conversations
synced 2025-01-04 02:08:04 -05:00
Set security error status on TLS cert mismatch
This commit is contained in:
parent
d2388a5a7e
commit
17cec63c14
@ -593,12 +593,13 @@ public class XmppConnection implements Runnable {
|
||||
}
|
||||
sslSocket.setEnabledProtocols(supportProtocols);
|
||||
|
||||
if (verifier != null
|
||||
&& !verifier.verify(account.getServer().getDomainpart(),
|
||||
sslSocket.getSession())) {
|
||||
sslSocket.close();
|
||||
throw new IOException("host mismatch in TLS connection");
|
||||
}
|
||||
if (verifier != null
|
||||
&& !verifier.verify(account.getServer().getDomainpart(),
|
||||
sslSocket.getSession())) {
|
||||
account.setStatus(Account.State.SECURITY_ERROR);
|
||||
sslSocket.close();
|
||||
throw new IOException("Host mismatch in TLS connection");
|
||||
}
|
||||
tagReader.setInputStream(sslSocket.getInputStream());
|
||||
tagWriter.setOutputStream(sslSocket.getOutputStream());
|
||||
sendStartStream();
|
||||
|
Loading…
Reference in New Issue
Block a user