UNPKG

@interopio/gateway-server

Version:

## `@glue42/gateway-ent` compatibility

11 lines (8 loc) 268 B
import {type Socket} from 'node:net'; export function socketKey(socket: Socket): string { const remoteIp = socket.remoteAddress; if (!remoteIp) { throw new Error('Socket has no remote address'); } return `${remoteIp}:${socket.remotePort}`; }