About 50 results
Open links in new tab
  1. What exactly is Socket - Stack Overflow

    9 According to "TCP/IP Sockets in C-Practical Guide for Programmers" by Michael J. Doonahoo & Kenneth L. Calvert (Chptr 1, Section 1.4, Pg 7): A socket is an abstraction through which an …

  2. 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 …

  3. sockets - Explain http keep-alive mechanism - Stack Overflow

    To communicate through the network, TCP (sockets) is used. That's similar to using the phone to ask a question to someone and having this person answer. HTTP 1.0 consists, when you load …

  4. sockets - Is TCP bidirectional or full-duplex? - Stack Overflow

    Feb 13, 2015 · Bidirectional and full-duplex are different concepts. For example the Ethernet is only half-duplex because at a specific time, only one host can send data over the wire, and it …

  5. Using the Hyper-V sockets between Windows host and Linux guest

    Mar 15, 2020 · I want to write simple application that communicates between the Hyper-V host and its virtual machine using Hyper-V sockets (netcat over vsock). In the Internet there are a …

  6. sockets - What's causing my java.net.SocketException: Connection …

    Feb 25, 2009 · java sockets socketexception connection-reset edited Jan 24, 2019 at 12:39 Raedwald 49.3k 49 163 250

  7. Differences between TCP sockets and web sockets, one more time

    Jun 5, 2013 · Trying to understand as best as I can the differences between TCP socket and websocket, I've already found a lot of useful information within these questions: fundamental …

  8. 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?

  9. How to find a list of sockets held by a process in windows?

    Jan 17, 2012 · It is suspected that it might be holding too many of those sockets without releasing them. Is there a way to find the number of socket handles the application is holding to in …

  10. Blocking sockets: when, exactly, does "send ()" return?

    When, exactly, does the BSD socket send() function return to the caller? In non-blocking mode, it should return immediately, correct? As for blocking mode, the man page says: When the …