About 29,900,000 results
Open links in new tab
  1. What is the difference between a port and a socket?

    Sep 30, 2008 · Sockets have been in widespread use since the early 1980s. A port represents an endpoint or "channel" for network communications. Port numbers allow different applications on the …

  2. What exactly is Socket - Stack Overflow

    9 According to "TCP/IP Sockets in C-Practical Guide for Programmers" by Michael J. Doonahoo & Kenneth L. Calvert (Chptr 1, Section 1.4, Pg 7): A socket is an abstraction through which an …

  3. 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 websockets. It se...

  4. sockets - What's the difference between streams and datagrams in ...

    Jan 14, 2011 · What's the difference between sockets (stream) and sockets (datagrams)? Why use one over the other?

  5. difference between socket programming and Http programming

    Feb 27, 2013 · Sockets on the other hand are an API that most operating systems provide to be able to talk with the network. The socket API supports different protocols from the transport layer and down.

  6. Send and Receive data via UDP in PowerShell - Stack Overflow

    Oct 10, 2010 · Send string "ABCDEFG" to server 10.10.10.1 on port UDP 5000 Receive response from server 10.10.10.1 I am relatively familiar with PowerShell, but this is my first time having to deal with …

  7. sockets - Is there a limit on number of tcp/ip connections between ...

    There is a limit, yes. See ulimit. In addition, you need to consider the TIME_WAIT state. Once a TCP socket is closed (by default) the port remains occupied in TIME_WAIT status for 2 minutes. This …

  8. c - check all socket opened in linux OS - Stack Overflow

    43 My program opens a socket with this function: sockfd = socket (AF_INET, SOCK_RAW, IPPROTO_ICMP) After finish sending data the socket is closed: close (sockfd); But the issue is when …

  9. Can two applications listen to the same port? - Stack Overflow

    Multiple accepted sockets can co-exist, all accepted from the same listening socket, all showing the same local port number as the listening socket. Multiple UDP sockets all bound to the same port can …

  10. sockets - What does "connection reset by peer" mean? - Stack Overflow

    Sep 16, 2009 · What is the meaning of the "connection reset by peer" error on a TCP connection? Is it a fatal error or just a notification or related to the network failure?