Short and simple - when using socket.io in a node.js server, is there an easy way to get the ip address for an incoming connection? I know you can get it for a standard HTTP connection (see http://forum.webfaction.com/viewtopic.php?id=4500), but socket.io is a bit of a different beast.
feedback
|
|
Okay, as of 0.7.7 this is available, but not in the manner that lubar describes. I ended up needing to parse through some commit logs on git hub to figure this one out, but the following code does actually work for me now:
| |||||||
feedback
|
|
Version 0.7.7 of Socket.IO now claims to return the client's IP address. I've had success with:
| |||
|
feedback
|
|
From the server example on the socket.io website, I'm assuming the "socket" object is a standard node.js net.Socket. Have you tried accessing the
| |||||||
feedback
|
|
From reading the socket.io source code it looks like the "listen" method takes arguments (server, options, fn) and if "server" is an instance of an HTTP/S server it will simply wrap it for you. So you could presumably give it an empty server which listens for the 'connection' event and handles the socket remoteAddress; however, things might be very difficult if you need to associate that address with an actual socket.io Socket object.
Might be easier to submit a patch to socket.io wherein their own Socket object is extended with the remoteAddress property assigned at connection time... | |||
feedback
|
|
This seems to work:
| |||
|
feedback
|