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 work. Is there any way I can reliably achieve a backlog of 0?

link|improve this question

80% accept rate
1  
Duplicate? stackoverflow.com/questions/5111040/… – gAMBOOKa Feb 28 '11 at 17:35
3  
But why backlog of 0? If your backlog is 0, you can not receive any connection, bacause every incomming connection must pend on the backlog before awakening the listening process... – lvella Feb 28 '11 at 20:03
what do you think you would achieve if you did managed to do this? – Len Holgate Feb 28 '11 at 21:41
feedback

1 Answer

up vote 0 down vote accepted

The closest you can get is to listen(), accept() and close() in one step. This should provide the same overall effect as a backlog of zero, except that you must re-create and bind the socket each time.

int accept_one(int sockfd, struct sockaddr *addr, socklen_t *addrlen)
{
    int result;

    result = listen(sockfd, 1);

    if (result >= 0)
        result = accept(sockfd, addr, addrlen);

    close(sockfd);

    return result;
}

I am not sure why you would want this, though.

link|improve this answer
If you close the sockfd you won't be able to listen to it again without starting the whole bind() process over. – Ariel Dec 7 '11 at 11:49
feedback

Your Answer

 
or
required, but never shown

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