Fix proxied check for remoteAddress

This commit is contained in:
Bryan Ashby 2017-06-01 18:56:05 -06:00
parent 1232a4823d
commit ff5896e80c
1 changed files with 5 additions and 1 deletions

View File

@ -28,6 +28,8 @@ function WebSocketClient(ws, req, serverType) {
get : () => ('secure' === serverType || true === this.proxied) ? true : false,
});
const self = this;
//
// This bridge makes accessible various calls that client sub classes
// want to access on I/O socket
@ -48,7 +50,7 @@ function WebSocketClient(ws, req, serverType) {
get remoteAddress() {
// Support X-Forwarded-For and X-Real-IP headers for proxied connections
return (this.proxied && (req.headers['x-forwarded-for'] || req.headers['x-real-ip'])) || req.connection.remoteAddress;
return (self.proxied && (req.headers['x-forwarded-for'] || req.headers['x-real-ip'])) || req.connection.remoteAddress;
}
}(ws);
@ -81,6 +83,8 @@ function WebSocketClient(ws, req, serverType) {
{
Log.debug(`Assuming secure connection due to X-Forwarded-Proto of "${req.headers['x-forwarded-proto']}"`);
this.proxied = true;
} else {
this.proxied = false;
}
// start handshake process