what-the-bank/sources/okhttp3/repackaged/internal/ConnectionSpecSelector.java

78 lines
2.7 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package okhttp3.repackaged.internal;
import java.io.IOException;
import java.io.InterruptedIOException;
import java.net.ProtocolException;
import java.net.UnknownServiceException;
import java.security.cert.CertificateException;
import java.util.Arrays;
import java.util.List;
import javax.net.ssl.SSLHandshakeException;
import javax.net.ssl.SSLPeerUnverifiedException;
import javax.net.ssl.SSLProtocolException;
import javax.net.ssl.SSLSocket;
import okhttp3.repackaged.ConnectionSpec;
/* loaded from: classes6.dex */
public final class ConnectionSpecSelector {
private int aiL = 0;
private boolean aiM;
private boolean aiN;
private final List<ConnectionSpec> connectionSpecs;
public ConnectionSpecSelector(List<ConnectionSpec> list) {
this.connectionSpecs = list;
}
public final ConnectionSpec configureSecureSocket(SSLSocket sSLSocket) throws IOException {
ConnectionSpec connectionSpec;
int i = this.aiL;
int size = this.connectionSpecs.size();
while (true) {
if (i >= size) {
connectionSpec = null;
break;
}
connectionSpec = this.connectionSpecs.get(i);
i++;
if (connectionSpec.isCompatible(sSLSocket)) {
this.aiL = i;
break;
}
}
if (connectionSpec == null) {
StringBuilder sb = new StringBuilder("Unable to find acceptable protocols. isFallback=");
sb.append(this.aiN);
sb.append(", modes=");
sb.append(this.connectionSpecs);
sb.append(", supported protocols=");
sb.append(Arrays.toString(sSLSocket.getEnabledProtocols()));
throw new UnknownServiceException(sb.toString());
}
this.aiM = a(sSLSocket);
Internal.instance.apply(connectionSpec, sSLSocket, this.aiN);
return connectionSpec;
}
public final boolean connectionFailed(IOException iOException) {
this.aiN = true;
if (!this.aiM || (iOException instanceof ProtocolException) || (iOException instanceof InterruptedIOException)) {
return false;
}
boolean z = iOException instanceof SSLHandshakeException;
if ((z && (iOException.getCause() instanceof CertificateException)) || (iOException instanceof SSLPeerUnverifiedException)) {
return false;
}
return z || (iOException instanceof SSLProtocolException);
}
private boolean a(SSLSocket sSLSocket) {
for (int i = this.aiL; i < this.connectionSpecs.size(); i++) {
if (this.connectionSpecs.get(i).isCompatible(sSLSocket)) {
return true;
}
}
return false;
}
}