import type { ISocketConnection } from '@rocket.chat/core-typings'; export function getClientAddress(connection: Pick): string { if (!connection) { return ''; } const { clientAddress, httpHeaders } = connection; return clientAddress || (httpHeaders?.['x-real-ip'] as string); }