- 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
32 lines
1.0 KiB
Java
32 lines
1.0 KiB
Java
package okhttp3.internal;
|
|
|
|
import javax.net.ssl.SSLSocket;
|
|
import okhttp3.Address;
|
|
import okhttp3.ConnectionPool;
|
|
import okhttp3.ConnectionSpec;
|
|
import okhttp3.Headers;
|
|
import okhttp3.Response;
|
|
import okhttp3.internal.connection.Exchange;
|
|
import okhttp3.internal.connection.RealConnectionPool;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public abstract class Internal {
|
|
public static Internal instance;
|
|
|
|
public abstract void addLenient(Headers.Builder builder, String str);
|
|
|
|
public abstract void addLenient(Headers.Builder builder, String str, String str2);
|
|
|
|
public abstract void apply(ConnectionSpec connectionSpec, SSLSocket sSLSocket, boolean z);
|
|
|
|
public abstract int code(Response.Builder builder);
|
|
|
|
public abstract boolean equalsNonHost(Address address, Address address2);
|
|
|
|
public abstract Exchange exchange(Response response);
|
|
|
|
public abstract void initExchange(Response.Builder builder, Exchange exchange);
|
|
|
|
public abstract RealConnectionPool realConnectionPool(ConnectionPool connectionPool);
|
|
}
|