Tagged Questions

4
votes
1answer
2k views

Who is listening on a given TCP port on Mac OS X?

On Linux, I can use netstat -pntl | grep $PORT or fuser -n tcp $PORT to find out which process (PID) is listening on the specified TCP port. How do I get the same information on Mac OS X?
1
vote
1answer
443 views

How to listen to a random tcp socket in node.js

I know I can create a tcp server like that in node.js var dataServer = net.createServer(function (stream) { }); dataServer.on("listening", function() { // this data server listen to a random ...
0
votes
1answer
173 views

How can I make my TCP listening app safer?

I’m looking for advice on writing a very safe C/C++ app that will listen to a tcp port. I'd like to peek at what others are trying to do to my machine, but I’d rather not install an elaborate honeypot ...
0
votes
2answers
37 views

TCP: is it possible to bind a socket and then /both/ connect from it and accept from it (both client and server rules)?

is it possible in any common platform - say, in Windows - to write a servient process that creates a socket, binds it to exactly one local "address:port" (fixed), and then: use it to listen for ...
0
votes
2answers
396 views

Listen queue for multi threaded TCP server

What is the significance of a listen queue(second argument in listen call) in a multi threaded TCP server? It's a little confusing because why do we need a queue, when we have multiple threads to ...
0
votes
3answers
445 views

How to create an application in J2EE which listends for an incoming request on TCP/IP socket?

I need to have a business logic running inside Glassfish 2.1 Appserver, which listens for inbound TCP connections and serves them. I feel that this kind of task is not really fit inside the appserver ...