Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,90 @@
package org.apache.http.impl;
import java.io.IOException;
import org.apache.http.HttpConnectionMetrics;
import org.apache.http.HttpEntityEnclosingRequest;
import org.apache.http.HttpException;
import org.apache.http.HttpRequest;
import org.apache.http.HttpRequestFactory;
import org.apache.http.HttpResponse;
import org.apache.http.HttpServerConnection;
import org.apache.http.impl.entity.EntityDeserializer;
import org.apache.http.impl.entity.EntitySerializer;
import org.apache.http.io.HttpMessageParser;
import org.apache.http.io.HttpMessageWriter;
import org.apache.http.io.SessionInputBuffer;
import org.apache.http.io.SessionOutputBuffer;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractHttpServerConnection implements HttpServerConnection {
public abstract void assertOpen() throws IllegalStateException;
public AbstractHttpServerConnection() {
throw new RuntimeException("Stub!");
}
public EntityDeserializer createEntityDeserializer() {
throw new RuntimeException("Stub!");
}
public EntitySerializer createEntitySerializer() {
throw new RuntimeException("Stub!");
}
public HttpRequestFactory createHttpRequestFactory() {
throw new RuntimeException("Stub!");
}
public HttpMessageParser createRequestParser(SessionInputBuffer sessionInputBuffer, HttpRequestFactory httpRequestFactory, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public HttpMessageWriter createResponseWriter(SessionOutputBuffer sessionOutputBuffer, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public void init(SessionInputBuffer sessionInputBuffer, SessionOutputBuffer sessionOutputBuffer, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpServerConnection
public HttpRequest receiveRequestHeader() throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpServerConnection
public void receiveRequestEntity(HttpEntityEnclosingRequest httpEntityEnclosingRequest) throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
public void doFlush() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpServerConnection
public void flush() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpServerConnection
public void sendResponseHeader(HttpResponse httpResponse) throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpServerConnection
public void sendResponseEntity(HttpResponse httpResponse) throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpConnection
public boolean isStale() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpConnection
public HttpConnectionMetrics getMetrics() {
throw new RuntimeException("Stub!");
}
}