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

    I don't know exactly what socket means. A server runs on a specific computer and has a socket that is bound to a specific port number. The server just waits, listening to the socket for a client to...

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

    Sep 30, 2008 · An endpoint (socket) is defined by the combination of a network address and a port identifier. Note that address/port does not completely identify a socket (more on this later). The …

  3. networking - What is a socket? - Unix & Linux Stack Exchange

    113 A socket is a pseudo-file that represents a network connection. Once a socket has been created (identifying the other host and port), writes to that socket are turned into network packets that get …

  4. What is AF_INET in socket programming? - Stack Overflow

    Jul 16, 2025 · AF_INET is an a ddress f amily that is used to designate the type of addresses that your socket can communicate with (in this case, Internet Protocol v4 addresses). When you create a …

  5. network programming - Understanding socket basics - Stack Overflow

    A "raw socket" is an end-point on, more or less, the physical transport. They're seldom used in applications programming, but sometimes used for various diagnostic things (traceroute, ping, …

  6. What is the difference between socket and websocket?

    The Socket.IO module available for Node.js can help a lot, but note that it is not a pure WebSocket module in its own right. It's actually a more generic communications module that can run on top of …

  7. python - socket.shutdown vs socket.close - Stack Overflow

    sock.shutdown(socket.SHUT_RDWR) sock.close() What exactly is the purpose of calling shutdown on the socket and then closing it? If it makes a difference, this socket is being used for non-blocking IO.

  8. c - socket connect () vs bind () - Stack Overflow

    Nov 19, 2014 · Both connect() and bind() system calls 'associate' the socket file descriptor to an address (typically an ip/port combination). Their prototypes are like:- int connect(int sockfd, const struct soc...

  9. python - 104, 'Connection reset by peer' socket error, or When does ...

    104, 'Connection reset by peer' socket error, or When does closing a socket result in a RST rather than FIN? Asked 17 years, 3 months ago Modified 7 years, 5 months ago Viewed 172k times

  10. Understanding INADDR_ANY for socket programming

    May 12, 2013 · Note that a socket can be bound to 0.0.0.0, but not port 0, because its a wildcard that makes it give the socket a random ephemeral port, so when you use bind (INADDR_ANY, 0) it binds …