print CF-Connecting-IP/X-Forwarded-For when present in socket.io requests

This commit is contained in:
Nick Krecklow
2020-04-01 21:54:43 -05:00
parent 1382a6a21e
commit 7e4e0390f1
3 changed files with 8 additions and 8 deletions

4
app.js
View File

@ -232,7 +232,7 @@ function startServices() {
// We're good to connect them!
connectedClients += 1;
logger.log('info', '%s connected, total clients: %d', client.request.connection.remoteAddress, connectedClients);
logger.log('info', '%s connected, total clients: %d', util.getRemoteAddr(client.request), connectedClients);
// We send the boot time (also sent in publicConfig.json) to the frontend to validate they have the same config.
// If so, they'll send back "requestListing" event, otherwise they will pull the new config and retry.
@ -242,7 +242,7 @@ function startServices() {
client.on('disconnect', function() {
connectedClients -= 1;
logger.log('info', '%s disconnected, total clients: %d', client.request.connection.remoteAddress, connectedClients);
logger.log('info', '%s disconnected, total clients: %d', util.getRemoteAddr(client.request), connectedClients);
});
client.on('requestHistoryGraph', function() {