Transmission Control Protocol (TCP) is a transport layer protocol that provides a connection-oriented data stream service with guaranteed, in-order delivery.
126
votes
18answers
153k 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 ...
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 ...
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, ...
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 ...
12
votes
9answers
30k views
Instantly detect client disconnection from server socket
How can I detect that a client has disconnected from my server?
I have the following code in my AcceptCallBack method
static Socket handler = null;
public static void AcceptCallback(IAsyncResult ar)
...
69
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?
52
votes
10answers
48k 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?
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?
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 ...
51
votes
12answers
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 ...
40
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 ...
9
votes
1answer
25k views
how to achieve transfer file between client and server using java socket
I have implement the simple TCP server and TCP client classes which can send the message from client to server and the message will be converted to upper case on the server side, but how can I achieve ...
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 ...
25
votes
5answers
25k 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 ...
4
votes
2answers
4k views
how to detect a TCP socket disconnection (with c berkeley socket)
I am using a loop to read message out from a c Berkeley socket but I am not able to detect when the socket is disconnected so I would accept a new connection. please help
while(true) {
...
1
vote
2answers
2k views
BOOST ASIO - How to write console server
I have to write asynchronous TCP Sever.
TCP Server have to be managed by console
(for eg: remove client, show list of all connected client, etcc..)
The problem is: How can I attach (or write) ...
11
votes
2answers
10k views
Converting Raw HTTP Request into HTTPWebRequest Object
In .NET is it possible to convert a raw HTTP request to HTTPWebRequest object?
I'm sure .NET internally doing it. Any idea which part of the .NET is actually handling this? Can I call it or is there ...
9
votes
3answers
8k views
How can a WCF service listen the same port as IIS?
I could run a Windows Service hosted WCF service listening http://localhost:80/MyService while IIS was serving pages on http://localhost:80 and both works.
But many places in the internet (like this ...
10
votes
4answers
9k views
how to get a client's MAC address from HttpServlet?
I was asked to write a servlet that collects client's details such as ip, mac address etc.
getting his IP is pretty straight-forward (request.getRemoteAddr()) but I dont find an elegant way to get ...
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 ...
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 ...
14
votes
9answers
37k views
How many socket connections possible?
Has anyone an idea how many tcp-socket connections are possible on a modern standard root server? (There is in general less traffic on each connection, but all the connections have to be up all the ...
9
votes
8answers
5k views
Discovering public IP programatically
I'm behind a router, I need a simple command to discover my public ip (instead of googling what's my ip and clicking one the results)
Are there any standard protocols for this? I've heard about STUN ...
41
votes
3answers
39k 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?
9
votes
1answer
5k views
Boost::Asio : io_service.run() vs poll() or how do I integrate boost::asio in mainloop
I am currently trying to use boost::asio for some simple tcp networking for the first time, and I allready came across something I am not really sure how to deal with. As far as I understand ...
3
votes
2answers
2k views
Some clarification needed about synchronous versus asynchronous asio operations
As far as I know, the main difference between synchronous and asynchronous operations. I.e. write() or read() vs async_write() and async_read() is that the former, don't return until the operation ...
33
votes
4answers
22k 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 ...
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 ...
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 ...
9
votes
10answers
17k views
Java TCP socket: data transfer is slow
I set up a server with a ServerSocket, connect to it with a client machine. They're directly networked through a switch and the ping time is <1ms.
Now, I try to push a "lot" of data from the ...
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 ...
1
vote
7answers
3k views
What is the correct way of reading from a TCP socket in C/C++?
Here's my code:
// Not all headers are relevant to the code snippet.
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include ...
8
votes
2answers
5k views
IPv6 link-local address format
I am working on a project related to networking/compression. One of the machines is Windows Vista, which already has IPv6 configured.
When I try ipconfig, I see an address in the following format: ...
3
votes
4answers
1k views
forward traffic from port X to computer B with c# “UDP punch hole into firewall”
I need to establish a tcp connection from my house computer to my office computer.
on the office there is a router where several computers are connected to. that router has internet therefore all the ...
13
votes
6answers
6k 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 ...
33
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 ...
8
votes
8answers
22k views
Converting serial port data to TCP/IP in a linux environment
I need to get data from the serial port of a Linux system and convert it to TCP/IP to send to a server. Is this difficult to do? I have some basic programming experience but not much experience with ...
2
votes
2answers
9k views
Asynchronous server socket multiple clients
I have been working with the following code published on msdn:
http://msdn.microsoft.com/en-us/library/fx6588te.aspx
I understand that the server application is not blocked whilst the application is ...
21
votes
5answers
33k 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?
6
votes
3answers
6k views
Handling Partial return from recv() TCP in C
I've been reading through beejs guide to networking to get a handle on TCP connections. In one of the samples the Client code for a simple TCP stream client looks like:
if ((numbytes = recv(sockfd, ...
3
votes
3answers
3k views
Direct TCP/IP connections in P2P apps
From a Joel's post on Copilot:
Direct Connect! We’ve always done
everything we can to make sure that
Fog Creek Copilot can connect in any
networking situation, no matter what
firewalls ...
4
votes
3answers
7k views
How to split a large file into chunks in c#?
I'm making a simple file transfer sender and receiver app through the wire. What I have so far is that the sender converts the file into a byte array and sends chunks of that array to the receiver.
...
14
votes
2answers
9k views
NGINX to reverse proxy websockets AND enable SSL (wss://)?
I'm so lost and new to building NGINX on my own but I want to be able to enable secure websockets without having an additional layer.
I don't want to enable SSL on the websocket server itself but ...
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 ...
17
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 ...
10
votes
7answers
15k views
How to properly and completely close/reset a TcpClient connection?
What is the correct way to close or reset a TcpClient connection?
We have software that communicates with hardware but sometimes something
goes wrong and we are no longer to communicate with it, until ...
9
votes
2answers
31k views
Max tcp/ip connections on Windows Server 2008
I have .Net service that listens on single port over TCP protocol. Clients connect and then transmit data for some time (from few minutes to several hours).
Is there any limit on number of ...
9
votes
10answers
12k views
When will a TCP network packet be fragmented at the application layer?
When will a TCP packet be fragmented at the application layer? When a TCP packet is sent from an application, will the recipient at the application layer ever receive the packet in two or more ...
15
votes
3answers
3k views
Do TCP connections get moved to another port after they are opened?
If a TCP socket server listens on port 28081 for incoming connections and then accepts a connection and start receiving data. Is the port that data is coming into still 28081 or does the port get ...
