@akhoury and his comments.. :p + jshinting

This commit is contained in:
psychobunny
2014-04-26 04:43:53 -04:00
parent eac0044dd1
commit 066b1c0d64

View File

@@ -15,17 +15,16 @@ var async = require('async'),
SocketPosts = {},
// a shy request-wannabe build from a socket for spam detection purposes
reqFromSocket = function(socket) {
var headers = socket.handshake.headers,
host = headers['host'],
referer = headers['referer'];
host = headers.host,
referer = headers.referer;
return {
ip: headers['x-forwarded-for'] || (socket.handshake.address || {}).address,
host: host,
protocol: headers['secure'] ? 'https' : 'http',
secure: !!headers['secure'],
protocol: headers.secure ? 'https' : 'http',
secure: !!headers.secure,
url: referer,
path: referer.substr(referer.indexOf(host) + host.length),
headers: headers