Transmission Control Protocol (TCP) is a transport layer protocol that provides a connection-oriented data stream service with guaranteed, in-order delivery.
124
votes
18answers
152k views
How can I connect to Android with ADB over TCP?
I am attempting to debug an application on a Motorola Droid but I am having some difficulty connecting to the device via USB. My development server is a Windows 7 64bit VM running in HyperV and so I ...
78
votes
8answers
19k views
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 third transport layer standard besides TCP and UDP: SCTP.
Summary: SCTP is a ...
70
votes
16answers
18k views
How to write a scalable Tcp/Ip based server
I am in the design phase of writing a new Windows Service application that accepts TCP/IP connections for long running connections (i.e. this is not like HTTP where there are many short connections, ...
67
votes
20answers
30k views
When is it appropriate to use UDP instead of TCP?
Since TCP guarantees packet delivery and thus can be considered "reliable", whereas UDP doesn't guarantee anything and packets can be lost, what would the advantage be of transmitting data using UDP ...
67
votes
7answers
33k views
Simulate delayed and dropped packets on Linux
I would like to simulate packet delay and loss for UDP and TCP on Linux to measure the performance of an application. Is there a simple way to do this?
56
votes
14answers
66k views
In C#, how to check if a TCP port is available?
In C# to use a TcpClient or generally to connect to a socket how can I first check if a certain port is free on my machine?
more info:
This is the code I use:
TcpClient c;
//I want to check here if ...
52
votes
10answers
47k views
UDP vs TCP, how much faster is it?
For general protocol message exchange, with loss tolerant. How much more efficient is UDP over TCP?
51
votes
13answers
11k views
Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer?
As a follow up to a recent question, I wonder why it is impossible in Java, without attempting reading/writing on a TCP socket, to detect that the socket has been gracefully closed by the peer? This ...
41
votes
3answers
38k views
What does “connection reset by peer” mean?
What is the meaning of the "connection reset by peer" error on a TCP connection? Is it a fatal error or just a notification?
39
votes
8answers
40k views
Can two applications listen to the same port?
As simple as it gets - can two applications on the same machine bind to the same port and ip address? Taking it a step further, can one app listen to requests coming from a certain ip and the other to ...
38
votes
11answers
19k views
What do you use when you need reliable UDP?
If you have a situation where a TCP connection is potentially too slow and a UDP 'connection' is potentially too unreliable what do you use? There are various standard reliable UDP protocols out ...
36
votes
1answer
14k views
Who is listening on a given TCP port on Mac OS X?
On Linux, I can use netstat -pntl | grep $PORT or fuser -n tcp $PORT to find out which process (PID) is listening on the specified TCP port. How do I get the same information on Mac OS X?
34
votes
13answers
8k views
Artificially create a connection timeout error
I've had a bug in our software that occurs when I receive a connection timeout. These errors are very rare (usually when my connection gets dropped by our internal network). How can I generate this ...
34
votes
2answers
17k views
What is the theoretical maximum number of open TCP connections that a modern Linux box can have
Assuming infinite performance from hardware, can a Linux box support >65536 open TCP connections?
I understand that the number of ephemeral ports (<65536) limits the number of connections from one ...
34
votes
11answers
6k views
How should one go about choosing a default TCP/IP port for a new service?
When developing an app that will listen on a TCP/IP port, how should one go about selecting a default port? Assume that this app will be installed on many computers, and that avoiding port conflicts ...
33
votes
4answers
21k views
How do multiple clients connect simultaneously to one port, say 80, on a server?
I understand the basics of how ports work. However, what I don't get is how multiple clients can simultaneously connect to say port 80. I know each client has a unique (for their machine) port. Does ...
32
votes
6answers
28k views
What is the largest TCP/IP network port number allowable for IPv4?
What is the highest port number one can use?
32
votes
6answers
19k views
Sniffer for localhost (Windows OS) [closed]
I am looking for a sniffer that can work with the loopback address in Windows.
So far, I found Microsoft Network Monitor which is a nice tool, but for localhost it's useless because on Windows, ...
31
votes
3answers
26k views
How to use socket based client with WCF (net.tcp) service?
I have developed a WCF service that uses the net.tcp adapter and listens to a specific port. I want to connect to that service using a normal .net client that uses sockets to send data to the port and ...
31
votes
3answers
26k views
Java: How to detect a remote side socket close?
How do you detect if Socket#close() has been called on a socket on the remote side?
29
votes
7answers
125k views
What causes a TCP/IP reset (RST) flag to be sent?
I'm trying to figure out why my app's TCP/IP connection keeps hiccuping every 10 minutes (exactly, within 1-2 seconds). I ran Wireshark and discovered that after 10 minutes of inactivity the other ...
28
votes
3answers
11k views
How to make a browser to browser (peer to peer) connection? [closed]
I want to write a website using HTML5, CSS and JavaScript on client side that will allow direct tcp/ip connection between the client browsers once the page is loaded.
I need to do this to to reduce ...
26
votes
14answers
3k views
Are binary protocols dead?
It seems like there used to be way more binary protocols because of the very slow internet speeds of the time (dialup). I've been seeing everything being replaced by HTTP and SOAP/REST/XML.
Why is ...
26
votes
4answers
13k views
High performance TCP server in C#
I am an experienced C# developer, but I have not developed a TCP server application so far. Now I have to develop a highly scalable and high performance server that can handle at least 5-10 thousand ...
25
votes
5answers
24k views
Setting TIME_WAIT TCP
We're trying to tune an application that accepts messages via TCP and also uses TCP for some of it's internal messaging. While load testing, we noticed that response time degrades significantly (and ...
25
votes
2answers
4k views
What is the fundamental difference between WebSockets and pure TCP?
I've read about WebSockets and I wonder why browser couldn't simply open trivial TCP connection and communicate with server like any other desktop application. And why this communication is possible ...
25
votes
6answers
10k views
JavaScript WebSockets with UDP?
I'm writing a JavaScript Application that has to receive a huge amount of data from other users. It is not important if some of this data gets lost. Is there some way of using JavaScript WebSockets ...
24
votes
1answer
912 views
Can't connect to Mobile Safari in iOS Simulator using Node
I'm trying to emulate the message exchange between Safari & Mobile Safari when remote debugging (using Node).
I've sniffed the traffic between the two; they're exchanging binary plists over TCP. ...
23
votes
5answers
8k views
C# TCP Hole Punch (NAT Traversal) Library or something?
I want to do TCP Hole Punching (NAT Traversal) in C#. It can be done with a rendevouzs server if needed. I found http://sharpstunt.codeplex.com/ but can not get this to work. Ideally i need some ...
23
votes
2answers
1k views
Long connections with Node.js, how to reduce memory usage and prevent memory leak? Also related with V8 and webkit-devtools
Here is what I'm trying to do: I'm developing a Node.js http server, which will hold long connections for pushing purpose(collaborate with redis) from tens of thousands of mobile clients in a single ...
22
votes
10answers
27k views
Detecting TCP Client Disconnect
If I'm running a simple server and have accept()ed a connection from a client, what is the best way to tell when the client has disconnected? Normally, the client in this case I supposed to send a ...
22
votes
6answers
6k views
How to retain one million simultaneous TCP connections?
I am to design a server that needs to serve millions of clients that are simultaneously connected with the server via TCP.
The data traffic between the server and the clients will be sparse, so ...
21
votes
15answers
15k views
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 is the client. The two should communicate as quickly as possible. There can only ever ...
21
votes
5answers
32k views
maximum packet size for a TCP connection
What is the maximum packet size for a TCP connection or how can i get the maximum packet size?
21
votes
2answers
1k views
What is the actual impact of calling socket.recv with a bufsize that is not a power of 2?
To read data from a socket in python, you call socket.recv, which has this signature:
socket.recv(bufsize[, flags])
The python docs for socket.recv vaguely state:
Note: For best match with ...
20
votes
5answers
12k views
IPv6 and ports
How do ports (or their functional equivalent) work with IPv6?
Thanks! The Wikipedia article points out that the syntax of an IPv6 address includes colons and has a short form preventing ...
20
votes
5answers
7k views
PostgreSQL UNIX domain sockets vs TCP sockets
I wonder if the UNIX domain socket connections with postgresql are faster then tcp connections from localhost in high concurrency rate and if it does, by how much?
20
votes
3answers
16k views
How to find the largest UDP packet I can send without fragmenting?
I need to know what the largest UDP packet I can send to another computer is without fragmentation.
This size is commonly known as the MTU (Maximum Transmission Unit). Supposedly, between 2 ...
18
votes
2answers
4k views
Running a function periodically in twisted protocol
I am looking for a way to periodically send some data over all clients connected to a TCP port. I am looking at twisted python and I am aware of reactor.callLater. But how do I use it to send some ...
18
votes
6answers
3k views
TCP-based RPC server (Erlang or something similar?) for iOS/Android app communication
I'm building native mobile applications in both iOS and Android. These apps require "realtime" updates from and to the server, same as any other network-based application does (Facebook, Twitter, ...
17
votes
7answers
1k views
Wiki: Current state of the art of Delphi 3rd party TCP/IP components libraries
I've not been doing bare metal TCP/IP for about 18 months, so I wonder what the current state of the art is.
I'm looking for both positive and negative aspects, with development of both server and ...
17
votes
3answers
1k views
Windows 8 - .NET TCP AcceptAsync callback not firing (blocked by Console.ReadLine())
I'm experiencing an issue specific to Windows 8 and VS2012.
I have a TCP socket server and client and am doing some testing on the local network. With sysinternals TCPView, I can see that packets are ...
16
votes
7answers
32k views
How to test if remote TCP port is opened from Shell script?
I'm looking for a quick and simple method for properly testing if a given TCP port is open on a remote server, from inside a Shell script.
I've managed to do it with the telnet command, and it works ...
16
votes
15answers
6k views
Broadcast like UDP with the reliability of TCP
I'm working on a .net solution that is run completely inside a single network. When users make a change to the system, I want to launch an announcement and have everyone else hear it and act ...
16
votes
4answers
5k views
Converting C++ TCP/IP applications from IPv4 to IPv6. Difficult? Worth the trouble?
Over the years I've developed a small mass of C++ server/client applications for Windows using WinSock (Routers, Web/Mail/FTP Servers, etc... etc...).
I’m starting to think more and more of creating ...
16
votes
4answers
12k views
What is the cost of many TIME_WAIT on the server side?
Let's assume there is a client that makes a lot of short-living connections to a server.
If the client closes the connection, there will be many ports in TIME_WAIT state on the client side. Since ...
16
votes
5answers
2k views
How to make two android devices to communicate through TCP
We want to establish TCP/IP connection between two android devices.
For now we thought that it would be simpler if we make the connection device to device. So there is no server that is between the ...
15
votes
6answers
9k views
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 know it). However, one of its core functions, accept() is a bit magical.
To borrow a ...
15
votes
11answers
35k views
Tool to monitor HTTP, TCP, etc. Web Service traffic [closed]
What's the best tool that you use to monitor Web Service, SOAP, WCF, etc. traffic that's coming and going on the wire? I have seen some tools that made with Java but they seem to be a little crappy. ...
15
votes
3answers
7k views
Boost.Test: Looking for a working non-Trivial Test Suite Example / Tutorial
The Boost.Test documentation and examples don't really seem to contain any non-trivial examples and so far the two tutorials I've found here and here while helpful are both fairly basic.
I would like ...
