Убраны неиспользуемые пакеты

This commit is contained in:
RoyceDa
2026-02-12 14:38:18 +02:00
parent 68312de205
commit 3af1e53a19
4 changed files with 3 additions and 181 deletions

View File

@@ -1,54 +0,0 @@
import Packet from "../packet";
import Stream from "../stream";
export class PacketAppUpdate extends Packet {
private url: string = "";
private version: string = "";
private kernelVersionRequired: string = "";
public getPacketId(): number {
return 0x0E;
}
public _receive(stream: Stream): void {
this.url = stream.readString();
this.version = stream.readString();
this.kernelVersionRequired = stream.readString();
}
public _send(): Promise<Stream> | Stream {
let stream = new Stream();
stream.writeInt16(this.getPacketId());
stream.writeString(this.url);
stream.writeString(this.version);
stream.writeString(this.kernelVersionRequired);
return stream;
}
public getUrl(): string {
return this.url;
}
public setUrl(url: string): void {
this.url = url;
}
public getVersion(): string {
return this.version;
}
public setVersion(version: string): void {
this.version = version;
}
public getKernelVersionRequired(): string {
return this.kernelVersionRequired;
}
public setKernelVersionRequired(kernelVersionRequired: string): void {
this.kernelVersionRequired = kernelVersionRequired;
}
}

View File

@@ -1,77 +0,0 @@
import Packet from "../packet";
import Stream from "../stream";
export class PacketAvatar extends Packet {
private privateKey : string = "";
private fromPublicKey: string = "";
private toPublicKey: string = "";
private blob: string = "";
private chachaKey: string = "";
public getPacketId(): number {
return 0x0C;
}
public _receive(stream: Stream): void {
this.privateKey = stream.readString();
this.fromPublicKey = stream.readString();
this.toPublicKey = stream.readString();
this.chachaKey = stream.readString();
this.blob = stream.readString();
}
public _send(): Promise<Stream> | Stream {
const stream = new Stream();
stream.writeInt16(this.getPacketId());
stream.writeString(this.privateKey);
stream.writeString(this.fromPublicKey);
stream.writeString(this.toPublicKey);
stream.writeString(this.chachaKey);
stream.writeString(this.blob);
return stream;
}
public setFromPublicKey(fromPublicKey: string): void {
this.fromPublicKey = fromPublicKey;
}
public setToPublicKey(toPublicKey: string): void {
this.toPublicKey = toPublicKey;
}
public getFromPublicKey(): string {
return this.fromPublicKey;
}
public getToPublicKey(): string {
return this.toPublicKey;
}
public setPrivateKey(hash: string): void {
this.privateKey = hash;
}
public getPrivateKey(): string {
return this.privateKey;
}
public setBlob(blob: string): void {
this.blob = blob;
}
public getBlob(): string {
return this.blob;
}
public setChachaKey(key: string): void {
this.chachaKey = key;
}
public getChachaKey(): string {
return this.chachaKey;
}
}

View File

@@ -1,43 +0,0 @@
import Packet from "../packet";
import Stream from "../stream";
export class PacketKernelUpdate extends Packet {
private url: string = "";
private version: string = "";
public getPacketId(): number {
return 0x0D;
}
public _receive(stream: Stream): void {
this.url = stream.readString();
this.version = stream.readString();
}
public _send(): Promise<Stream> | Stream {
let stream = new Stream();
stream.writeInt16(this.getPacketId());
stream.writeString(this.url);
stream.writeString(this.version);
return stream;
}
public getUrl(): string {
return this.url;
}
public setUrl(url: string): void {
this.url = url;
}
public getVersion(): string {
return this.version;
}
public setVersion(version: string): void {
this.version = version;
}
}