- 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
112 lines
3.0 KiB
Java
112 lines
3.0 KiB
Java
package org.apache.http.conn.routing;
|
|
|
|
import java.net.InetAddress;
|
|
import org.apache.http.HttpHost;
|
|
import org.apache.http.conn.routing.RouteInfo;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public final class RouteTracker implements RouteInfo {
|
|
public RouteTracker(HttpHost httpHost, InetAddress inetAddress) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public RouteTracker(HttpRoute httpRoute) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final void connectTarget(boolean z) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final void connectProxy(HttpHost httpHost, boolean z) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final void tunnelTarget(boolean z) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final void tunnelProxy(HttpHost httpHost, boolean z) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final void layerProtocol(boolean z) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.routing.RouteInfo
|
|
public final HttpHost getTargetHost() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.routing.RouteInfo
|
|
public final InetAddress getLocalAddress() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.routing.RouteInfo
|
|
public final int getHopCount() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.routing.RouteInfo
|
|
public final HttpHost getHopTarget(int i) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.routing.RouteInfo
|
|
public final HttpHost getProxyHost() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final boolean isConnected() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.routing.RouteInfo
|
|
public final RouteInfo.TunnelType getTunnelType() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.routing.RouteInfo
|
|
public final boolean isTunnelled() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.routing.RouteInfo
|
|
public final RouteInfo.LayerType getLayerType() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.routing.RouteInfo
|
|
public final boolean isLayered() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.routing.RouteInfo
|
|
public final boolean isSecure() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final HttpRoute toRoute() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final int hashCode() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final String toString() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public Object clone() throws CloneNotSupportedException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|