Allow packetDecoder to return promise

master
Garrett Mills 2 years ago
parent 16dba70123
commit d494db0b29

@ -1,14 +1,19 @@
import * as radius from 'radius';
import * as gblConfig from '../config';
import { IPacket } from './types/PacketHandler';
import {Authentication} from "./auth";
import {UDPServer} from "./server/UDPServer";
import {RadiusService} from "./radius/RadiusService";
export type PacketDecoder = (msg: Buffer) => {
packet?: radius.RadiusPacket & IPacket;
secret: string;
};
import { Authentication } from './auth';
import { UDPServer } from './server/UDPServer';
import { RadiusService } from './radius/RadiusService';
export type PacketDecoder = (msg: Buffer) =>
| {
packet?: radius.RadiusPacket & IPacket;
secret: string;
}
| Promise<{
packet?: radius.RadiusPacket & IPacket;
secret: string;
}>;
export default class PackageInterface {
private static _instance?: PackageInterface;

@ -27,7 +27,7 @@ export class RadiusService {
msg: Buffer
): Promise<{ data: Buffer; expectAcknowledgment?: boolean } | undefined> {
const { packet, secret } = packageInterface.packetDecoder
? packageInterface.packetDecoder(msg)
? await packageInterface.packetDecoder(msg)
: this.defaultDecoder(msg);
if (!packet) {

Loading…
Cancel
Save