Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two questions:

1) How can I get the IP address, and any other possible data about the client when it connects (see comment in code in the connect section)

2) Will this code safely allow multiple client connections at the same time?

var net = require('net');
var sys = require('sys');

var server = net.createServer(function (stream) {
  stream.setEncoding('utf8');

  stream.on('connect', function() {
    ///////////////////////////////////////////////////////
    console.log("WANT THE IP OF THE CONNECTOR HERE!!!!!!");
    ///////////////////////////////////////////////////////
  });

  // data recieve
  stream.on('data', function (data) {
    //stream.write(data);
    console.log("recv: [" + data + "]");
  });

  // end connection
  stream.on('end', function () {
    stream.end();
  });

});
server.listen(50505, 'localhost');
share|improve this question

1 Answer

up vote 3 down vote accepted
  1. http://nodejs.org/docs/v0.3.2/api/net.html#stream.remoteAddress

  2. Yes

share|improve this answer
Thanks, works perfectly. What is the best way to find info like this? There isn't a whole lot on google- albeit I was probably not entering the correct keywords. – MichaelICE Aug 11 '11 at 11:22
1  
Simply read the entire node.js manual. It's not long. – Dan Grossman Aug 11 '11 at 14:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.