minor fixes

This commit is contained in:
Rik Berkelder 2022-03-14 02:20:52 +01:00
parent ac2b4c4a67
commit 11b1702726
4 changed files with 8 additions and 59 deletions

View file

@ -19,7 +19,7 @@ export class OSCClient {
this.socket = dgram.createSocket({ type: 'udp4', reuseAddr: true });
}
private sendPacket(packet: Buffer): void {
public sendPacket(packet: Buffer): void {
this.socket.send(packet, 0, packet.length, this.port, this.host);
}