About 13,200,000 results
Open links in new tab
  1. Difference between socket and websocket? - Stack Overflow

    I'm building web app that needs to communicate with another application using socket connections. This is new territory for me, so want to be sure that sockets are different than …

  2. sockets - What's the difference between streams and datagrams in ...

    Jan 14, 2011 · What's the difference between sockets (stream) and sockets (datagrams)? Why use one over the other?

  3. sockets - Understanding struct sockaddr - Stack Overflow

    struct sockaddr { unsigned short sa_family; // address family, AF_xxx char sa_data[14]; // 14 bytes of protocol address }; In this structure what exactly is the meaning address ...

  4. Socket Programming in C++ - Stack Overflow

    Can anybody provide me some sample example on Client and server connection using sockets in C++. I have gone through some tutorials now i want to implement it. How to start ?

  5. What is the difference between a port and a socket?

    Sep 30, 2008 · Sockets have been in widespread use since the early 1980s. A port represents an endpoint or "channel" for network communications. Port numbers allow different applications …

  6. sockets - Is there a limit on number of tcp/ip connections between ...

    There is a limit, yes. See ulimit. In addition, you need to consider the TIME_WAIT state. Once a TCP socket is closed (by default) the port remains occupied in TIME_WAIT status for 2 …

  7. sockets - IPC speed and compare - Stack Overflow

    I've found the following pages helpful - IPC performance: Named Pipe vs Socket (in particular) and Sockets vs named pipes for local IPC on Windows?. It sounds like the concensus is that …

  8. Can two applications listen to the same port? - Stack Overflow

    Multiple accepted sockets can co-exist, all accepted from the same listening socket, all showing the same local port number as the listening socket. Multiple UDP sockets all bound to the …

  9. sockets - recv () in Python - Stack Overflow

    This function watches sets sockets and waits for something noteworthy to happen. For sockets in the first list, "noteworthy" means that the socket has data available for reading.

  10. sockets - Socketpair () in C/Unix - Stack Overflow

    Sockets are just one of the methods for communicating and is useful if you have to implement one-to-many connection. Means, one server process which communicates with many client …