- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
76 lines
2.5 KiB
Java
76 lines
2.5 KiB
Java
package com.google.android.gms.internal.ads;
|
|
|
|
import java.io.IOException;
|
|
import java.net.InetAddress;
|
|
import java.net.Socket;
|
|
import java.net.SocketException;
|
|
import javax.net.ssl.SSLSocketFactory;
|
|
|
|
/* loaded from: classes3.dex */
|
|
final class zzcdo extends SSLSocketFactory {
|
|
final SSLSocketFactory zza = (SSLSocketFactory) SSLSocketFactory.getDefault();
|
|
final /* synthetic */ zzcdp zzb;
|
|
|
|
public zzcdo(zzcdp zzcdpVar) {
|
|
this.zzb = zzcdpVar;
|
|
}
|
|
|
|
private final Socket zza(Socket socket) throws SocketException {
|
|
int i;
|
|
int i2;
|
|
zzcdp zzcdpVar = this.zzb;
|
|
i = zzcdpVar.zzq;
|
|
if (i > 0) {
|
|
i2 = zzcdpVar.zzq;
|
|
socket.setReceiveBufferSize(i2);
|
|
}
|
|
this.zzb.zzr.add(socket);
|
|
return socket;
|
|
}
|
|
|
|
@Override // javax.net.SocketFactory
|
|
public final Socket createSocket(String str, int i) throws IOException {
|
|
Socket createSocket = this.zza.createSocket(str, i);
|
|
zza(createSocket);
|
|
return createSocket;
|
|
}
|
|
|
|
@Override // javax.net.ssl.SSLSocketFactory
|
|
public final String[] getDefaultCipherSuites() {
|
|
return this.zza.getDefaultCipherSuites();
|
|
}
|
|
|
|
@Override // javax.net.ssl.SSLSocketFactory
|
|
public final String[] getSupportedCipherSuites() {
|
|
return this.zza.getSupportedCipherSuites();
|
|
}
|
|
|
|
@Override // javax.net.SocketFactory
|
|
public final Socket createSocket(String str, int i, InetAddress inetAddress, int i2) throws IOException {
|
|
Socket createSocket = this.zza.createSocket(str, i, inetAddress, i2);
|
|
zza(createSocket);
|
|
return createSocket;
|
|
}
|
|
|
|
@Override // javax.net.SocketFactory
|
|
public final Socket createSocket(InetAddress inetAddress, int i) throws IOException {
|
|
Socket createSocket = this.zza.createSocket(inetAddress, i);
|
|
zza(createSocket);
|
|
return createSocket;
|
|
}
|
|
|
|
@Override // javax.net.SocketFactory
|
|
public final Socket createSocket(InetAddress inetAddress, int i, InetAddress inetAddress2, int i2) throws IOException {
|
|
Socket createSocket = this.zza.createSocket(inetAddress, i, inetAddress2, i2);
|
|
zza(createSocket);
|
|
return createSocket;
|
|
}
|
|
|
|
@Override // javax.net.ssl.SSLSocketFactory
|
|
public final Socket createSocket(Socket socket, String str, int i, boolean z) throws IOException {
|
|
Socket createSocket = this.zza.createSocket(socket, str, i, z);
|
|
zza(createSocket);
|
|
return createSocket;
|
|
}
|
|
}
|