Tagged Questions
User Datagram Protocol is one of the messaging protocols of the IP protocol stack. With UDP, computer applications can send messages to other hosts on an Internet Protocol (IP) network without requiring prior communications to set up special transmission channels or data paths.
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 ...
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?
18
votes
2answers
4k views
What is the best way to do Bit Field manipulation in Python?
I'm reading some MPEG Transport Stream protocol over UDP and it has some funky bitfields in it (length 13 for example). I'm using the "struct" library to do the broad unpacking, but is there a simple ...
15
votes
6answers
18k views
What is the largest Safe UDP Packet Size on the Internet
I've read a number of articles about UDP packet sizes but have been unable to come to a conclusion on whats correct.
A number of services restrict the largest UDP packet to 512 bytes (like dns)
...
14
votes
5answers
6k views
UDP real-time games in Flash/Flex available Open source RTMFP implementation
Are there any examples of using the Flash 10 beta RTMFP UDP based protocol to build real-time Flash games. The RTMFP examples so far seem to focus on P2P networking between flash clients does anyone ...
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 ...
12
votes
2answers
263 views
Broadcasting UDP packets using multiple NICs
I'm building an embedded system for a camera controller in Linux (not real-time). I'm having a problem getting the networking to do what I want it to do. The system has 3 NICs, 1 100base-T and 2 ...
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
6answers
12k views
Sending and receiving UDP packets between two programs on the same computer
Is it possible to get two separate programs to communicate on the same computer (one-way only) over UDP through localhost/127... by sharing the same port #?
We're working on a student project in ...
12
votes
4answers
21k views
C# little endian or big endian?
In the documentation of hardware that allows us to control it via UDP/IP,
I found the following fragment:
In this communication protocol, DWORD is a 4 bytes data, WORD is a 2 bytes data,
BYTE is ...
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
5answers
693 views
Is sending data via UDP sockets on the same machine reliable?
If i use UDP sockets for interprocess communication, can i expect that all send data is received by the other process in the same order?
I know this is not true for UDP in general.
11
votes
5answers
5k views
How do I choose a multicast address for my application's use?
How should I choose an IPv4 multicast address for my application's use? I may need more than one (a whole range perhaps ultimately) but just want to avoid conflicts with other applications.
Packets ...
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
3answers
3k views
How to split and join array in C++ for UDP?
I have a byte array like this:
lzo_bytep out; // my byte array
size_t uncompressedImageSize = 921600;
out = (lzo_bytep) malloc((uncompressedImageSize +
uncompressedImageSize / 16 + 64 + ...
10
votes
3answers
4k views
Sending UDP packets from the iPhone
Does anyone have any good tutorials on sending UDP packets from the iPhone SDK?
EDIT:
Was actually really easy to do this...
RTFM!
After including AsyncUdpSocket just add this in header:
...
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
9answers
22k views
What is the optimal size of a UDP packet for maximum throughput?
I need to send packets from one host to another over a potentially lossy network. In order to minimize packet latency, I'm not considering TCP/IP. But, I wish to maximize the throughput uisng UDP. ...
9
votes
12answers
2k views
What should i know about UDP programming?
I don't mean how to connect to a socket. What should I know about UDP programming?
Do I need to worry about bad data in my socket?
I should assume if I send 200bytes I may get 120 and 60 bytes ...
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 ...
8
votes
3answers
1k views
Causes of Linux UDP packet drops
I have a Linux C++ application which receives sequenced UDP packets. Because of the sequencing, I can easily determine when a packet is lost or re-ordered, i.e. when a "gap" is encountered. The ...
8
votes
2answers
3k views
AsyncUdpSocket how to use receive
I am trying to get a program for iPhone running on the simulator. My problem is with receiving UDP data. I use asyncUdpSocket. If I make a socket and use sendData:(NSData) toHost:,... well it works ...
8
votes
5answers
2k views
C# UDP Socket: Get receiver address
I have an asynchronous UDP server class with a socket bound on IPAddress.Any, and I'd like to know which IPAddress the received packet was sent to (...or received on). It seems that I can't just use ...
8
votes
1answer
669 views
How to recover gracefully from a C# udp socket exception
Context: I'm porting a linux perl app to C#, the server listens on a udp port and maintains multiple concurrent dialogs with remote clients via a single udp socket. During testing, I send out high ...
8
votes
2answers
6k views
Is it possible to use UDP in Flash/ActionScript?
Quick question: is there possibility to do UDP datagram sockets in Flash/ActionScript?
8
votes
11answers
15k views
Why Does RTP use UDP instead of TCP?
I wanted to know why UDP is used in RTP rather than TCP ?. Major VoIP Tools used only UDP as i hacked some of the VoIP OSS.
7
votes
2answers
156 views
Are datagrams always received completely?
Most datagram receiving functions such as c's recv or read, javas DatagramPacket class or pythons SocketServer, include the possibility to find out the amount of received data.
c:
int amount = ...
7
votes
2answers
1k views
UDP Server and Client in Delphi
I am making a UDP C/S. I am having a problem with number of data the server can receive per second.
I have tested sending batches of 10, 100, 1000 data messages to the server, 10, 100 received ...
7
votes
7answers
852 views
which protocol used for developing a chat application over LAN?
Hi
I would like to create a chat application(desktop-app) in c++, so which protocol i would need to study and implement. UDP(?)
Please provide me some good thoughts and advices and links also.
7
votes
4answers
4k views
UDP packet capturing in c#
Wireshark captures UDP packets in my LAN with follwoing details
Source IP 192.168.1.2
Destination IP 233.x.x.x
Source Port 24098
Destination Port 12074,12330
how can i ...
7
votes
1answer
2k views
Problem recieving UDP packets send to 127.0.0.1 when using SO_REUSEADDR
I am trying to make a set of applications discover each other using UDP and broadcasting messages. The applications will periodically send out an UDP packet saying who they are and what they can do. ...
7
votes
1answer
7k views
Specifying UDP receive buffer size at runtime in Linux
In Linux, one can specify the system's default receive buffer size for network packets, say UDP, using the following commands:
sysctl -w net.core.rmem_max=<value>
sysctl -w ...
7
votes
3answers
1k views
using UDP protocol with WCF
Which binding should I use to make my WCF application communicate through UDP instead of TCP?
Can someone point me to the right direction so that I could use UDP with WCF?
Thanks
7
votes
6answers
3k views
Adding SSL support to existing TCP & UDP code?
Here's my question.
Right now I have a Linux server application (written using C++ - gcc) that communicates with a Windows C++ client application (Visual Studio 9, Qt 4.5.)
What is the very easiest ...
7
votes
4answers
2k views
How do you specify a port range for Java sockets?
In Java you can give the number zero as a single parameter for the Socket or DatagramSocket constructor. Java binds that Socket to a free port then. Is it possible to limit the port lookup to a ...
7
votes
5answers
2k views
Can UDP data be delivered corrupted?
Is it possible for UDP data to come to you corrupted? I know it is possible for it to be lost.
6
votes
1answer
291 views
How to Generate Network Packets with C/C++
I want to generate a network packet to send over (for example) port 123 to an NTP server so I can receive and parse the returned packet. The goal is to better understand how packets are generated, ...
6
votes
1answer
148 views
Choosing a computer on a LAN to act as a server
I'm working on a small networked game (LAN only) with one computer acting as a server and all others (including the actual game running on the same computer) acting as clients. Essentially, the ...
6
votes
3answers
367 views
Average UDP packet loss and packet re-ordering
I'd like to garner fellow SO'ers experience with regards to the issue of UDP packet loss (or drop-out).
Initially my understanding is that given direct point to point connections where the NICs are ...
6
votes
5answers
3k 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 ...
6
votes
3answers
364 views
How big is an IP packet frame including headers?
A bit of background.
I'm writing an application that uses UDP. The application will run on a LAN (not internet).
I've been assuming that if my MTU is 1500 then thats how big a UDP payload can be, ...
6
votes
5answers
193 views
How to make a UDP socket replace old messages (not yet recv()'d) when new arrive?
First, a little bit of context to explain why I am on the "UDP sampling" route:
I would like to sample data produced at a fast rate for an unknown period of time. The data I want to sample is on ...
6
votes
4answers
338 views
Options for securing UDP Traffic
I'm looking for options for securing UDP traffic (mainly real-time video) on a wireless network (802.11). Any suggestions apart from Datagram Transport Layer Security (DTLS)?
Thanks.
6
votes
3answers
792 views
How do I determine if a packet is RTP/RTCP?
I am using SharpPCap which is built on WinPCap to capture UDP traffic. My end goal is to capture the audio data from H.323 and save those phone conversations as WAV files. But first thing is first - I ...
6
votes
6answers
726 views
UDP security and identifying incoming data
I have been creating an application using UDP for transmitting and receiving information. The problem I am running into is security. Right now I am using the IP/socketid in determining what data ...
6
votes
5answers
2k views
Java dropping half of UDP packets
I have a simple client/server setup. The server is in C and the client that is querying the server is Java.
My problem is that, when I send bandwidth-intensive data over the connection, such as Video ...
6
votes
6answers
2k views
Tcp Reliability versus Udp Burdens for serious, high-performance server
Speed, optimization, and scalability are the typical comparisons between the Udp and Tcp protocols. Tcp touts reliability with the disadvantage of a little extra overhead, but speed is good to ...
6
votes
4answers
1k views
Multi-threaded network UDP server library for .net
Is there something like twisted (python) or eventmachine (ruby) in .net land?
Do I even need this abstraction? I am listening to a single IO device that will be sending me events for three or four ...