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

    A socket is an abstraction through which an application may send and receive data,in much the same way as an open file allows an application to read and write data to stable storage. A …

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

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

  5. Postman : socket hang up - Stack Overflow

    Jun 8, 2017 · I've read a few post regarding socket hang up and it mention about sending a request and there's no response from the server side and probably timeout. How do I extend …

  6. Understanding INADDR_ANY for socket programming

    May 12, 2013 · Note that a socket can be bound to 0.0.0.0, but not port 0, because its a wildcard that makes it give the socket a random ephemeral port, so when you use bind (INADDR_ANY, …

  7. Difference between socket and websocket? - Stack Overflow

    I'm building web app that needs to communicate with another application using socket connections. This is new territory for me, so want to be sure that sockets are different than …

  8. Send/receive data with python socket - Stack Overflow

    Feb 23, 2017 · Is using the socket library a requirement? The problem description in the body of the question does not say so and it seems that using one of the many established solutions for …

  9. java - Socket closed exception - Stack Overflow

    Oct 24, 2013 · 14 java.net.SocketException socket is closed This exception means that you closed the socket, and then continued to try to use it.

  10. Is there a way for multiple processes to share a listening socket?

    Mar 22, 2009 · In socket programming, you create a listening socket and then for each client that connects, you get a normal stream socket that you can use to handle the client's request. The …