Top "Listen" questions

Python: Listen on two ports

import socket backlog = 1 #Number of queues sk_1 = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sk_2 = socket.socket(socket.AF_…

python sockets listen
What value of backlog should I use?

I read the man 2 listen. I don't understand what is the backlog value, it says The backlog argument defines the …

c sockets listen backlog
How do I stop a Listening server in Go

I've been trying to find a way to stop a listening server in Go gracefully. Because listen.Accept blocks it …

sockets networking go listen
Listen: Operation Not supported error

I am working on a raw sockets program in Ubuntu using C programming language. As I am using raw sockets, …

c sockets listen
listen() queue length in socket-programing in c?

I have written two pair of codes(server.c and client.c) in Linux. One for UNIX-domain AF_UNIX other …

c linux sockets network-protocols listen
Know the size of accept pending connections queue in GNU/Linux

In a typical C network server implementation, the size of the accept pending queue can be set with listen. When …

c sockets networking listen
android service to listen to a specific port

I want to know how to set an android service that listen to a specific port e.g. http://127.0.0.1:12345

android service port listen
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 …

c linux sockets listen
Listening to events between view controllers

I am having trouble trying to figure out how to listen to events fired in one View Controller from another …

extjs controller listener listen
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, …

c linux sockets listen