Playit.gg tunnel #491

Closed
Sirherobrine23 wants to merge 4 commits from 484i into main
Showing only changes of commit b266c9378b - Show all commits

@ -1,6 +1,9 @@
import dgram from "node:dgram";
import net from "node:net";
export type playitTunnelOptions = {};
export async function playitTunnel(options: playitTunnelOptions) {}
export type proxyUdpToTcpOptions = {
udpType?: dgram.SocketType,
listen?: number,
@ -83,4 +86,4 @@ export function proxyTcpToUdp(options: proxyTcpToUdpClient) {
const addr = this.address();
console.log("Port listen, %s (tcp -> udp)", addr.port);
});
}
}