About 1,710,000 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 …

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

  3. 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). …

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

    Jan 3, 2009 · Most socket libraries, however, are so used to programmers neglecting to use this piece of etiquette that normally a close is the same as shutdown(); close(). So in most …

  5. Basic Python client socket example - Stack Overflow

    I've been trying to wrap my head around how sockets work, and I've been trying to pick apart some sample code I found at this page for a very simple client socket program. Since this is …

  6. Python Socket Multiple Clients - Stack Overflow

    May 30, 2012 · So I am working on an iPhone app that requires a socket to handle multiple clients for online gaming. I have tried Twisted, and with much effort, I have failed to get a bunch of …

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

    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 …

  8. Differences between Socket.IO and websockets - Stack Overflow

    What are the differences between Socket.IO and websockets in Node.js? Are they both server push technologies? The only differences I felt was, Socket.IO allowed me to send/emit …

  9. How to set timeout on python's socket recv method?

    Apr 27, 2010 · The typical approach is to use select () to wait until data is available or until the timeout occurs. Only call recv() when data is actually available. To be safe, we also set the …

  10. How Do I Use Raw Socket in Python? - Stack Overflow

    Jul 13, 2009 · From what I gathered, Raw Socket usage in Python is nearly identical in semantics to UNIX's raw socket, but without the struct s that define the packets structure. I was …