Tagged Questions
Transmission Control Protocol (TCP) is a transport layer protocol that has in-built guaranteed delivery.
53
votes
16answers
9k 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, ...
36
votes
10answers
6k 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 ...
35
votes
12answers
55k 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 ...
35
votes
7answers
14k 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?
35
votes
15answers
42k 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 ...
34
votes
19answers
10k 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 ...
30
votes
11answers
11k 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 ...
24
votes
3answers
18k 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 ...
24
votes
11answers
2k 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 ...
23
votes
9answers
21k 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?
21
votes
13answers
2k views
Are binary protocols dead?
It seemed like there use 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 ...
19
votes
3answers
10k 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?
18
votes
2answers
340 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 ...
18
votes
5answers
8k views
Sniffer for localhost (Windows OS)
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, ...
17
votes
4answers
4k 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 ...
16
votes
7answers
588 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 ...
16
votes
8answers
64k 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 ...
15
votes
3answers
1k 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 ...
14
votes
4answers
3k 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 ...
14
votes
3answers
8k 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 ...
13
votes
6answers
1k 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, ...
13
votes
4answers
517 views
How can I simulate TCP/IP errors?
On a multi-tier application, I need to simulate various TCP/IP errors to test some reconnection code. Does anyone know of any tools (Windows based) I can use for this purpose? Thanks.
12
votes
1answer
874 views
Speeding up the rate that IIS/.NET/LINQ retrieves data from the Network Buffers
When doing a TCP analysis of the traffic between my web servers and database servers I see the network buffers (TCP Window) filling up frequently. The web servers then send TCP messages to the ...
12
votes
5answers
722 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 ...
12
votes
7answers
14k 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 ...
12
votes
8answers
3k views
Experiences with (free) embedded TCP / IP stacks?
Does anyone have especially good (or bad) experiences with any of the following embedded TCP / IP stacks?
uIP
lwIP
Bentham's TCP/IP Lean implementation
The TCP/IP stack from this book
My needs are ...
12
votes
10answers
15k 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 ...
12
votes
5answers
5k 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 ...
12
votes
5answers
2k views
What kind of issues are there in implementing realtime multiplayer games
I have some experience making multiplayer turn-based games using sockets, but I've never attempted a realtime action game. What kind of extra issues would I have to deal with? Do I need to keep a ...
11
votes
2answers
548 views
The XBox 360 TCP stack does not respond to TCP Zero Window Probes with a 0-byte payload
I'm experimenting with an Android app that streams Music via UPnP to an XBox. The streaming works for the most part, but quite frequently, after a minute or two, the streaming stalls, especially when ...
11
votes
4answers
2k 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 ...
11
votes
1answer
1k 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 ...
11
votes
4answers
4k 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?
11
votes
13answers
13k views
Tool to monitor HTTP, TCP, etc. Web Service traffic
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. ...
11
votes
15answers
4k 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 ...
10
votes
6answers
3k views
Best Game network programming articles and books [closed]
What are good resources for the latest in Game network programming. I'm looking for something that's not the traditional business software network programming, talking about RPC and clients making ...
10
votes
4answers
8k 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 ...
10
votes
3answers
2k views
Find the next TCP port in .Net
I want to create a new net.tcp://localhost:x/Service endpoint for a WCF service call, with a dynamically assigned new open tcp port.
I know that TcpClient will assign a new client side port when I ...
9
votes
3answers
105 views
How to mock an outgoing Socket connection?
In integration tests (JDK 6) I'm trying to catch all outgoing TCP connections and mock them. Looks like I should use java.net.Socket#setSocketImplFactory() method. Works fine at the moment, but I ...
9
votes
2answers
917 views
Linux Loopback performance with TCP_NODELAY enabled
I recently stumbled on an interesting TCP performance issue while running some performance tests that compared network performance versus loopback performance. In my case the network performance ...
9
votes
2answers
2k views
Can't use ServerSocket on Android
I'm trying to listen on a port using ServerSocket on an Android device. I want to be able to connect to this port over WiFi using a computer on the same network.
I get no exception when binding it to ...
9
votes
2answers
2k 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 ...
9
votes
2answers
2k views
Uncatchable errors in node.js
So I'm trying to write a simple TCP socket server that broadcasts information to all connected clients. So when a user connects, they get added to the list of clients, and when the stream emits the ...
9
votes
6answers
14k views
What is a TCP window update?
I'm making my own custom server software for a game in Java (the game and original server software were written with Java). There isn't any protocol documentation available, so I am having to read the ...
9
votes
7answers
773 views
Is it better to send 1 large chunk or lots of small ones when using TCP?
After I accept() a connection, and then write() to the client socket, is it better to write all the data you intend to send at once or send it in chunks?
For example:
accept, write 1MB, ...
9
votes
7answers
4k 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 ...
9
votes
4answers
3k views
Why does UDP have a length field in the header and TCP does not?
Why does UDP have a length field in the header and TCP does not?
I am guessing that the length of the segment in TCP is inferred from the IP header but one should be able to do the same for a UDP ...
9
votes
4answers
8k views
socket listen backlog parameter, how to determine this value?
How should I determine what to use for a listening socket's backlog parameter? Is it a problem to simply specify a very large number?
9
votes
13answers
3k 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 ...
8
votes
2answers
153 views
TCP connection, bash only
I found this line in a script. While I globally understand what it does--opening a bidirectional TCP connection--, I need some explanations on the syntax. Here's the line:
exec ...