Fix webirc and 4-in-6 addresses
This commit is contained in:
parent
a7fe19deca
commit
d42ac23c55
@ -70,11 +70,15 @@ module.exports = function() {
|
||||
};
|
||||
|
||||
function getClientIp(req) {
|
||||
var ip;
|
||||
|
||||
if (!Helper.config.reverseProxy) {
|
||||
return req.connection.remoteAddress;
|
||||
ip = req.connection.remoteAddress;
|
||||
} else {
|
||||
return req.headers["x-forwarded-for"] || req.connection.remoteAddress;
|
||||
ip = req.headers["x-forwarded-for"] || req.connection.remoteAddress;
|
||||
}
|
||||
|
||||
return ip.replace(/^::ffff:/, "");
|
||||
}
|
||||
|
||||
function allRequests(req, res, next) {
|
||||
|
Loading…
Reference in New Issue
Block a user