About 68 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. 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 …

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

  4. Systemd: how to properly restart service/socket

    Dec 31, 2022 · I get this message Warning: Stopping foo.service, but it can still be activated by: foo.socket Am I supposed to restart the socket instead? Disable the service and just leave the socket …

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

  6. How to create a public unix domain socket?

    The two cases are not equivalent. With nc you are trying to have a "server" listening on the socket while something else is already listening to it. In the first case, a single acpid instance is listening on the …

  7. java - Official reasons for "Software caused connection abort: socket ...

    private native void socketWrite0(FileDescriptor fd, byte[] b, int off, int len) throws IOException; Regarding #2 My guess is that it is caused when the client has terminated the connection, before getting the full …

  8. How can I communicate with a Unix domain socket via the shell on …

    174 I’m running a Debian Squeeze web server. I’ve installed memcached on it, and configured memcached to listen on a Unix domain socket (at /tmp/memcached.sock), as it only needs to receive …

  9. .net - How to connect to tcp socket with powershell to send and …

    Apr 21, 2015 · It uses .Net System.IO.StreamReader and System.IO.StreamWriter to read and write data from/to the TCP socket. I would like to connect to a socket telnet style with it and send/receive …

  10. Are FIFO, pipe & Unix domain socket the same thing in Linux kernel?

    A UNIX domain socket has similar behaviour as a TCP/IP or UDP/IP socket. A socket is bidirectional and can be used by a lot of processes simultaneously. A process can accept many connections on …