Función Listen()

Función Listen()

de Alejandro Miguel Andriani -
Número de respuestas: 1

¿Qué significa el segundo parámetro, "backlog", de esta función? 
Investigando encotré que indica: "el número de conexiones permitidas"
¿A que se refiere exactamente con esto?

Gracias, saludos.

En respuesta a Alejandro Miguel Andriani

Re: Función Listen()

de Leonardo Vidal -

Acá tienes una explicación:

"backlog is the number of connections allowed on the incoming queue. What does that mean? Well, incoming connections are going to wait in this queue until you accept() them (see below) and this is the limit on how many can queue up."

Extraido de:

http://www.beej.us/guide/bgnet/output/html/singlepage/bgnet.html#listen

Slds.