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.

Simple Socket Server in Bash?

Is there a way to quickly bind to a TCP port/ip address and simply print out all information to …

linux bash sockets tcp
Size of empty UDP and TCP packet?

What is the size of an empty UDP datagram? And that of an empty TCP packet? I can only find …

tcp udp size
Troubleshooting connections stuck in CLOSE_WAIT status

I have a Java application running in WebLogic 11g on Windows, which after several days, becomes unresponsive. One suspicious symptom …

java sockets tcp weblogic netstat
Using pipe() in Node.js net

I'm having trouble wrapping my head around the pipe function shown in several Node.js examples for the net module. …

javascript node.js tcp
TCP: Server sends [RST, ACK] immediately after receiving [SYN] from Client

Host_A tries to send some data to Host_B over TCP. Host_B is listening on port 8181. Both Host_…

linux tcp nio redhat
How to fix "a connection attempt failed because the connected party did not properly respond after a period of time ..." error?

I'm making a game in C# and I want to display the progress (movements and so on) of opponent. So …

c# sockets tcp nat
Do I need to heartbeat to keep a TCP connection open?

I have two components that that communicate via TCP/IP. Component A acts as a server/listener and Component B …

sockets tcp
What does this socket.gaierror mean?

I'm new to python and going through a book, Core Python Applications 3rd Edition. This is the the first example …

python tcp errno
Linux tool to send raw data to a TCP server

I am aware that this is not a direct 'development' question but I need this info to test a development …

linux tcp
When should I use TCP_NODELAY and when TCP_CORK?

I understood that both of them disable Nagle's algorithm. When should/ shouldn't I use each one of them?

linux sockets tcp