Wholly implement http server

This commit is contained in:
David Majdandžić
2023-03-29 21:03:32 +02:00
parent f54ecf0476
commit f972890b53
6 changed files with 380 additions and 73 deletions

View File

@@ -42,7 +42,7 @@ export abstract class PduProcessor {
PduProcessor.processors.push(new processor());
}
static getProcessorsForType(type: string): any[] {
static getProcessorsForType(type: string): PduProcessor[] {
return this.processors.filter((processor: any) => processor.servesSessionType === type);
}