Tagged Questions
4
votes
2answers
475 views
listen() ignores the backlog argument?
I have the following problem:
I have sockfd = socket(AF_INET, SOCK_STREAM, 0)
After I set up and bind the socket (let's say with sockfd.sin_port = htons(666)), I immediately do:
listen(sockfd, 3);
...
4
votes
10answers
2k views
Is it possible to unlisten on a socket?
Is it possible to unlisten on a socket after you have called listen(fd, backlog)?
Edit: My mistake for not making myself clear. I'd like to be able to temporarily unlisten on the socket. Calling ...
3
votes
2answers
199 views
Application path and listening port
I'd like to know which application that is listening on a port on a linux machine.
There are multiple servers, apache and what not on a single machine and I'd like to know which server is listening ...
1
vote
2answers
472 views
why would I get EADDRINUSE not from bind() but from listen()?
In a C++ Linux application I'm calling socket(), bind() and listen(), to create a server socket. Usually if the application is started twice (with same server port), in the second process bind() will ...
0
votes
1answer
62 views
Can I force some ports for listening only(mean servermdoe)
In linux is there a way to tell the system that never give a port for client connection, but instead allocate it only for requests for listening(server).
That is, given a port P,
If a proc wants to ...
0
votes
1answer
393 views
Setting listen() backlog to 0
When listening on a socket, I would ideally like to limit the backlog to zero, i.e.
listen( socket, 0 );
However, based on the following post, listen() ignores the backlog argument?, this wouldn't ...
0
votes
1answer
161 views
Linux: Finer-grain control of INET listen socket binding?
I have interfaces lo, eth0, and eth0:1.
progA creates a listen socket, and binds it to port p on INADDR_ANY.
Simultaneously, I would like to use ncat to port forward, listening on the same port ...