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.
|
|
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:
|
|||||||||||||
|
|
This seems to work:
|
|||
|
|
|
Version 0.7.7 of Socket.IO now claims to return the client's IP address. I've had success with:
|
|||||||||
|
|
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... |
|||
|
|
Like said in documentation (0.8.21):
Link: http://nodejs.org/api/all.html#all_socket_address Hope this helps. |
|||
|
|