-1
votes
1answer
55 views

C# UDP Tracker Protocol - Cannot receive data

Can you guys tell me why I can't receive data. I used the UDP Tracker Protocol from : http://www.bittorrent.org/beps/bep_0015.html Here is my code when I try to get information from ...
0
votes
0answers
164 views

JGroups not forming a cluster with UDP

I am trying to create a leader election protocol using JGroups so that N instances of my program can elect a master and all clients get the ip of this master. More or less the current implementation ...
4
votes
4answers
348 views

udp file transfer project - is error checking necessary?

I have been given the classical task of transferring files using UDP. On different resources, I have read both checking for errors on the packets (adding CRC alongside data to packets) is necessary ...
-3
votes
2answers
269 views

How do I port this code to Java? [closed]

I am implementing 2 applications that use the sliding window protocol as a data link protocol and UDP Sockets to communicate. I am trying to implement the sliding window protocol using the Tanembaum's ...
0
votes
1answer
215 views

Programming routing protocol for MANet in Java(UDP)

I'm programming mobile ad hoc network routing protocol in JAVA (using UDP). That routing protocol consists of ring topology (each node as one predecessor node and one successor node). First, I've ...
0
votes
0answers
29 views

Specifying a binary protocol down to the bits

I am reverse engineering a binary protocol (UDP-based) that is using information on the nibble and bit levels. Tools like Protobuf don't seem to address that level of granularity. I don't really need ...
2
votes
1answer
206 views

Broadcasting in RUDP, UDT, LWIP, DCCP

Out of the protocols Reliable UDP (RUDP), UDT, LWIP and DCCP, which protocols can support BROADCAST mechanism? Which is more reliable and have congestion control?
0
votes
2answers
86 views

clues, advices about how to decode a packet

I received a gift last year which is a Sony CMT700Ni audio station, wifi capable. It is also capable of a airplay-like feature which is called "PartyStreaming". I'm currently digging inside, explore ...
-6
votes
1answer
118 views

Why does the HTTP protocol based on TCP? [closed]

Why have people done the HTTP protocol based on TCP, and not based on UDP?
2
votes
1answer
768 views

how exactly rtmfp / UDP works

I am trying to develop a live video chat app using flash and rtmfp protocol but I have doubts as to how rtmfp guarantees to connect peers especially when the peers are located in different networks.
2
votes
1answer
619 views

UDP Hole Punching not possible with mobile provider

actually iam coding an android app that receives the pictures of a webcam that it connected to a pc. To gain more fps i use the udp protocol instead of tcp. The idea is, that the pc sends the ...
1
vote
0answers
110 views

How to use Tsunami UDP protocol in java

I need some example on how can I use tsunami UDP protocol in a java client server environment.I already tried to search it online.But did not get any relevant link.
1
vote
1answer
507 views

Go back N protocol

I'm trying to implement the Go back N protocol on two separate client and server applications. Say my sequence numbers must fit 3 bits, so 2^3 = 8 max numbers, and 2^3 - 1 = 7 window size. I ...
1
vote
0answers
205 views

unreal tournament 3: reverse engineering lan browser udp broadcasts

there exist some resources explaining details about the unreal (tournament 3's) network protocol. i am specifically interested in the games lan broadcasting protocol on which i can't find any ...
0
votes
2answers
634 views

Error Fragmented IP Protocol

I am making application in c#.In that application i want to broadcast some data using UDP protocol.I am making socket as IPEndPoint ipep = new IPEndPoint(IPAddress.Broadcast, ...
3
votes
2answers
145 views

Protocol of a packet

I'm programming an offline packets decoding program in C under Windows 7 x86. I wonder how it is possible to know packet protocol, either if it is UDP or TCP?
2
votes
2answers
3k views

What are good UDP timeout and retry values?

I'm working on a UDP server/client configuration. The client sends the server a single packet, which varies in size but is usually <500 bytes. The server responds essentially instantly with a ...
2
votes
5answers
238 views

Are there any protocol specifications that allow either TCP or UDP to be utilized?

Are there any networking protocols that are not strictly TCP or UDP but can be used with either one? For example, HTTP, FTP, STMP, RTMP are always TCP. DNS, SNMP, DHCP, RIP are always UDP. Is there ...
6
votes
6answers
13k views

Difference between TCP and UDP? [closed]

What is the difference between TCP and UDP? I know that TCP is used in the case of non-time critical applications, and UDP is used for games or applications that require fast transmission of data. I ...
0
votes
2answers
43 views

Synchronization of messages over a network

Using broadcast and UDP with ack (we have to use it cos it is supporting existing system). When A sends a msg to B, A's timer will start running, before the timeout it will send B the same msg again. ...
1
vote
2answers
46 views

Protocols/Methods available to synchronize msgs and their acks in a broadcast asynchronous network system?

What are the protocols/methods available to synchronize msgs and their acks in a broadcast asynchronous network system? We are using UDP with ACKs and timer to see if there is a need for a resend (max ...
0
votes
2answers
263 views

Hex values in Protocol headers

Why are the protocol headers like TCP or UDP normally using Hex representation while filling the particular fields in the protocol header ? Is there any specific advantage ?
0
votes
0answers
132 views

UDP + total order, non-reliable

I'm trying to find a version of UDP which just alleviates the restriction of a maximum size of the message sent. I don't care about reliability or partial retransmission, if all chunks arrive I want ...
1
vote
2answers
477 views

Communication protocols in UDP

After many hours, I have discovered that the given udp server needs the following steps for a successful communication: 1- Send "Start Message" on a given port 2- Wait to receive from server on any ...
2
votes
2answers
644 views

Tile-based MMORPG movements protocol

I'm working in a tile-based MMORPG and I have a problem. Each user has a fixed position (one tile) all the time, so the rest of the users can see him there, and cannot move to that tile. So there is ...
13
votes
10answers
25k 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.