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

    Apr 26, 2013 · 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 …

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

  3. Basic Python client socket example - Stack Overflow

    Here is the simplest python socket example. Server side: import socket serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) serversocket.bind(('localhost', 8089)) …

  4. Python socket.error: [Errno 111] Connection refused

    Python socket.error: [Errno 111] Connection refused Asked 12 years, 11 months ago Modified 3 years, 7 months ago Viewed 467k times

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

  6. Socket and file descriptors - Stack Overflow

    Nov 14, 2012 · I'm learning about network programming in Unix and currently trying to understand the concept of socket and file descriptors. From what I have understood a file descriptor is …

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

  8. difference between socket programming and Http programming

    Feb 27, 2013 · Socket programming is a kind of middleware, residing between the application layer and the TCP layer. It's able to carry anything present in the application layer; even HTTP …

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

    Jul 10, 2011 · 112 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 …

  10. Can't connect to local MySQL server through socket …

    Mar 21, 2011 · 1 The same, similar issue is when connecting via command line client to a port forwarded from virtualbox or docker, when you use it without a host parameter, it will fail on …