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

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

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

    Sep 30, 2008 · A socket is a special type of file handle which is used by a process to request network services from the operating system. A socket address is the triple: {protocol, local …

  3. python - Where is the _socket file? - Stack Overflow

    May 27, 2016 · The socket.py module wraps this with some additional information that doesn't need the speed boost or access to OS-level C APIs. If you are versed in C, you can read the …

  4. difference between socket programming and Http programming

    Feb 27, 2013 · Socket Connection. Socket is used to transport data between systems. It simply connects two systems together, an IP address is the address of the machine over an IP based …

  5. network programming - Understanding socket basics - Stack …

    Socket is a software mechanism provided by the operating system. Like its name implies, you can think of it like an "electrical outlet" or some electrical connector, even though socket is not a …

  6. Socket and file descriptors - Stack Overflow

    Nov 14, 2012 · There is no difference between a socket (descriptor) and a file descriptor(s). A socket is just a special form of a file. For example, you can use the syscalls used on file …

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

    The problem obviously was (as you figured it out) that port 36250 wasn't open on the server side at the time you tried to connect (hence connection refused).

  8. python socket programming OSError: [WinError 10038] an …

    Dec 4, 2015 · serversock = socket(AF_INET, SOCK_STREAM) Share. Improve this answer. Follow

  9. Sending string via socket (python) - Stack Overflow

    Jan 20, 2014 · Exactly what you asked for, "something like a chat application". This IS a chat application. Your serversocket.accept() accepts a socket, delivers it into the class client() …

  10. Basic Python client socket example - Stack Overflow

    import socket clientsocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) clientsocket.connect(('localhost', 8089)) clientsocket.send('hello') First run the …