Top "Tcp" questions

Transmission Control Protocol (TCP) is a transport layer protocol that provides a connection-oriented data stream service with guaranteed, in-order delivery.

Why is SCTP not much used/known

I recently checked out the book "UNIX Network Programming, Vol. 1" by Richards Stevens and I found that there is a …

networking tcp popularity sctp
HAProxy Loadbalancing TCP traffic

Using HAProxy, I'm trying to (TCP) load balance Rserve(a service listening in TCP socket for calling R scripts) running …

tcp load-balancing haproxy rserve
How to close a socket left open by a killed program?

I have a Python application which opens a simple TCP socket to communicate with another Python application on a separate …

python linux sockets networking tcp
How does the socket API accept() function work?

The socket API is the de-facto standard for TCP/IP and UDP/IP communications (that is, networking code as we …

networking sockets tcp
Random "An existing connection was forcibly closed by the remote host." after a TCP reset

I have two parts, a client and a server. And I try to send data (size > 5840 Bytes) from the …

c# .net sockets tcp wireshark
Go, tcp too many open files debug

Here's a straightforward Go http (tcp) connection test script func main() { ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, …

sockets tcp go goroutine
Can't connect to Android via ADB over wifi - Do I need root access?

I'm basically trying to do this: How can I connect to Android with ADB over TCP? with the Droid X2. …

android tcp wifi wireless adb
How can a web server handle multiple user's incoming requests at a time on a single port (80)?

How does a web server handle multiple incoming requests at the same time on a single port(80)? Example : At the …

networking web-applications web tcp network-programming
Difference between TCP Listener and Socket

As far as I know I can create a server using both TCPListener and Socket, so what is the difference …

sockets tcp client serversocket tcplistener
boost::asio cleanly disconnecting

Sometimes boost::asio seems to disconnect before I want it to, i.e. before the server properly handles the disconnect. …

c++ sockets tcp network-programming boost-asio