1. Socket.Listen Method (Int32) (System.Net.Sockets)

    https://msdn.microsoft.com/en-us/library/system.net.sockets.socket...

    Note ; The backlog parameter is limited to different values depending on the Operating System. You may specify a higher value, but the backlog will be limited based ...

    • Code sample

      IPAddress hostIP = (Dns.Resolve(IPAddress.Any.ToString())).AddressList[0];
        IPEndPoint ep = new IPEndPoint(hostIP, port);
        listenSocket.Bind(ep);
        listenSocket.Listen(backlog);...
      See more on MSDNWas this helpful?Thanks! Give more feedback
  2. https://fr.wikipedia.org/wiki/Berkeley_Sockets

    Berkeley Sockets Interface ou simplement sockets, est un ensemble normalisé de fonctions de communication lancé par l'université de Berkeley au début des années ...

  3. listen(2): listen for connections on socket - Linux man page

    https://linux.die.net/man/2/listen

    listen() marks the socket referred to by sockfd as a passive socket, that is, as a socket that will be used to accept incoming connection requests using accept(2).

  4. How to: Create a Socket Listener - msdn.microsoft.com

    https://msdn.microsoft.com/en-us/library/bb397809(v=vs.90).aspx

    The .NET Compact Framework supports socket-based network communications. For considerations that are specific to programming sockets in the .NET Compact Framework ...

  5. TcpListener Class (System.Net.Sockets)

    https://msdn.microsoft.com/en-us/library/system.net.sockets.tcp...

    Initializes a new instance of the TcpListener class that listens for incoming connection attempts on the specified local IP address and port number.

  6. Difference between TCP Listener and Socket - Stack …

    https://stackoverflow.com/questions/12361924

    As far as I know I can create a server using both TCPListener and Socket, so what is the difference between the two of them? Socket private Socket MainSock; MainSock ...

  7. C# Socket.Listen(MAX_CONNECTIONS); - Stack Overflow

    https://stackoverflow.com/questions/2060659

    i need some help with socket.listen. my max_connections is set to 1. but even after a client is connected if another client tries to connect, on the client side it ...

  8. www.commentcamarche.net › … › Programmation › Sockets

    La fonction listen() ne s'utilise qu'en mode connecté (donc avec le protocole TCP) int listen(int socket,int backlog) socket représente le socket précédemment ouvert

  9. Network socket - Wikipedia

    https://en.wikipedia.org/wiki/Network_socket

    A network socket is an internal endpoint for sending or receiving data at a single node in a computer network. Concretely, it is a representation of this endpoint in ...

  10. LuaSocket: TCP/IP support - Instituto Nacional de ...

    w3.impa.br/~diego/software/luasocket/tcp.html

    socket.tcp() Creates and returns a TCP master object. A master object can be transformed into a server object with the method listen (after a call to bind) or into a client object with the method connect. The only other method supported by a master object is the close method.