About 509,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. 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 …

  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. Socket Programming in C++ - Stack Overflow

    There is no socket API in the C++ Standard. The POSIX C API is fairly portable (the GNU libC documentation provides examples of UDP and TCP clients and servers that I usually turn to …

  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. networking - What is a socket? - Unix & Linux Stack Exchange

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

  8. c - How to use select () on sockets properly? - Stack Overflow

    Sep 22, 2015 · setup_server_socket calls bind and listen and sets the socket to nonblocking mode. The following code blocks on the select call it seems, not moving forward to FD_ISSET …

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

    Mar 21, 2011 · 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 …

  10. Postman : socket hang up - Stack Overflow

    Mar 27, 2019 · For me the issue was related to the mismatch of the http versions on the client and server.. Client was assuming http v2 while server (spring boot/ tomcat) in the case was http v1

Refresh