mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-02 06:45:59 +01:00
Shrink try body in XmppHostnameVerifier
This commit is contained in:
parent
19c797777e
commit
a73dcd6f53
1 changed files with 8 additions and 7 deletions
|
@ -78,19 +78,20 @@ public class XmppHostnameVerifier implements HostnameVerifier {
|
|||
}
|
||||
catch (SSLPeerUnverifiedException e) {
|
||||
// Not using certificates for peers, try verifying the principal
|
||||
Principal peerPrincipal = null;
|
||||
try {
|
||||
Principal peerPrincipal = session.getPeerPrincipal();
|
||||
if (peerPrincipal instanceof KerberosPrincipal) {
|
||||
validPrincipal = match(hostname, (KerberosPrincipal) peerPrincipal);
|
||||
}
|
||||
else {
|
||||
LOGGER.info("Can't verify principal for " + hostname + ". Not kerberos");
|
||||
}
|
||||
peerPrincipal = session.getPeerPrincipal();
|
||||
}
|
||||
catch (SSLPeerUnverifiedException e2) {
|
||||
LOGGER.log(Level.INFO, "Can't verify principal for " + hostname + ". Not kerberos",
|
||||
e2);
|
||||
}
|
||||
if (peerPrincipal instanceof KerberosPrincipal) {
|
||||
validPrincipal = match(hostname, (KerberosPrincipal) peerPrincipal);
|
||||
}
|
||||
else {
|
||||
LOGGER.info("Can't verify principal for " + hostname + ". Not kerberos");
|
||||
}
|
||||
}
|
||||
|
||||
return validCertificate || validPrincipal;
|
||||
|
|
Loading…
Reference in a new issue