37 lines
2.5 KiB
Java
37 lines
2.5 KiB
Java
package okhttp3.internal.http;
|
|
|
|
import okhttp3.Interceptor;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class CallServerInterceptor implements Interceptor {
|
|
private final boolean forWebSocket;
|
|
|
|
private final boolean shouldIgnoreAndWaitForRealResponse(int i) {
|
|
return i == 100 || (102 <= i && i < 200);
|
|
}
|
|
|
|
public CallServerInterceptor(boolean z) {
|
|
this.forWebSocket = z;
|
|
}
|
|
|
|
/* JADX WARN: Removed duplicated region for block: B:26:0x00e3 A[Catch: IOException -> 0x01a0, TryCatch #2 {IOException -> 0x01a0, blocks: (B:69:0x00ac, B:71:0x00b5, B:24:0x00b9, B:26:0x00e3, B:28:0x00ec, B:29:0x00ef, B:30:0x0113, B:34:0x011e, B:35:0x013d, B:37:0x014b, B:45:0x0161, B:50:0x0174, B:53:0x0194, B:54:0x019e, B:64:0x018c, B:65:0x016a, B:66:0x0156, B:67:0x012d), top: B:68:0x00ac }] */
|
|
/* JADX WARN: Removed duplicated region for block: B:47:0x0167 */
|
|
/* JADX WARN: Removed duplicated region for block: B:50:0x0174 A[Catch: IOException -> 0x01a0, TryCatch #2 {IOException -> 0x01a0, blocks: (B:69:0x00ac, B:71:0x00b5, B:24:0x00b9, B:26:0x00e3, B:28:0x00ec, B:29:0x00ef, B:30:0x0113, B:34:0x011e, B:35:0x013d, B:37:0x014b, B:45:0x0161, B:50:0x0174, B:53:0x0194, B:54:0x019e, B:64:0x018c, B:65:0x016a, B:66:0x0156, B:67:0x012d), top: B:68:0x00ac }] */
|
|
/* JADX WARN: Removed duplicated region for block: B:65:0x016a A[Catch: IOException -> 0x01a0, TryCatch #2 {IOException -> 0x01a0, blocks: (B:69:0x00ac, B:71:0x00b5, B:24:0x00b9, B:26:0x00e3, B:28:0x00ec, B:29:0x00ef, B:30:0x0113, B:34:0x011e, B:35:0x013d, B:37:0x014b, B:45:0x0161, B:50:0x0174, B:53:0x0194, B:54:0x019e, B:64:0x018c, B:65:0x016a, B:66:0x0156, B:67:0x012d), top: B:68:0x00ac }] */
|
|
/* JADX WARN: Removed duplicated region for block: B:68:0x00ac A[EXC_TOP_SPLITTER, SYNTHETIC] */
|
|
/* JADX WARN: Removed duplicated region for block: B:77:0x00a4 */
|
|
/* JADX WARN: Removed duplicated region for block: B:80:0x01b8 */
|
|
@Override // okhttp3.Interceptor
|
|
/*
|
|
Code decompiled incorrectly, please refer to instructions dump.
|
|
To view partially-correct add '--show-bad-code' argument
|
|
*/
|
|
public final okhttp3.Response intercept(okhttp3.Interceptor.Chain r15) throws java.io.IOException {
|
|
/*
|
|
Method dump skipped, instructions count: 441
|
|
To view this dump add '--comments-level debug' option
|
|
*/
|
|
throw new UnsupportedOperationException("Method not decompiled: okhttp3.internal.http.CallServerInterceptor.intercept(okhttp3.Interceptor$Chain):okhttp3.Response");
|
|
}
|
|
}
|