Optionally enable websocket compression

This commit is contained in:
PrivateGER 2025-02-25 22:07:59 +01:00
parent c6cabb8c75
commit 2b919c4eb0
No known key found for this signature in database
3 changed files with 14 additions and 0 deletions

View file

@ -26,6 +26,7 @@ import MainStreamConnection from './stream/Connection.js';
import { ChannelsService } from './stream/ChannelsService.js';
import type * as http from 'node:http';
import type { IEndpointMeta } from './endpoints.js';
import type {Config} from "@/config.js";
@Injectable()
export class StreamingApiServerService {
@ -49,6 +50,9 @@ export class StreamingApiServerService {
private channelFollowingService: ChannelFollowingService,
private rateLimiterService: SkRateLimiterService,
private loggerService: LoggerService,
@Inject(DI.config)
private config: Config,
) {
}
@ -74,6 +78,7 @@ export class StreamingApiServerService {
public attach(server: http.Server): void {
this.#wss = new WebSocket.WebSocketServer({
noServer: true,
perMessageDeflate: this.config.websocketCompression ?? false,
});
server.on('upgrade', async (request, socket, head) => {