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.

learn more… | top users | synonyms

1
vote
1answer
110 views

UDP Hole Punching Not Working

I am trying to create a chat program that works by UDP hole punching and connecting directly to a node which is provided by a broker. The script I have right now works just fine locally. The problems ...
2
votes
0answers
19 views

How to send back to a UDP source address?

I have a question concerning communication between a server and a client using UDP. I'll first explain what I'm trying to do. The client sends a message to the server using a random UDP source port ...
0
votes
0answers
20 views

Is it possible to connect to a UDP server via Javascript?

Alright so I have a C++ game server which I wanna connect to via UDP and Javascript, but I'm not sure how to do that. WebSockets don't seem to work as they only supports TCP and WebRTC doesn't seem to ...
0
votes
0answers
11 views

Cross datacenter UDP connection

I know UDP is connection less. My centralised log server listens on UDP port, and I am considering moving it to an offsite server for cost reasons. Will there be any connection or similar overhead ...
0
votes
1answer
16 views

UDP received datapackets but prints out funny results.

this is my first time here. I will outline my problem. I am doing a simple UDP file.txt transfer from sender to receiver. It arrived as prompt.. BUT, when I print the content some came out ...
0
votes
2answers
36 views

bittorrent protocol by udp sockets

I am stucked with implementing bittorent client in posix c language . I was looking for some examples and found libbt library (SourceForge.net/projects/libbt). In the bittorent, specification is ...
0
votes
1answer
15 views

How to use nc send udp packet to windows 7?

I need send some udp packet consquently from raspberry pi to windows 7,in windows side,i use UDPclient to listen any udp data ,that is the code : byte[] data = new byte[1024]; string ...
0
votes
1answer
15 views

UDP Service with amazon web services

Good Day, I have been using AWS quite a bit for my cloud based system for a hardware project. Using SimpleDB and the notification service provided is great. However, I need a backend on AWS that ...
1
vote
0answers
25 views

Python UDP Socket Not Receiving Data

I am attempting to write a UDP chat system, but for some reason the listen() loop is not working and I can not figure out why. import socket ...
0
votes
1answer
16 views

Receiving UDP messages in Python while reading data from 3 ADCs

Hi guys I'm new here and new to Python as well. I'm trying to get my Raspberry Pi to control the temperature of my jacuzzi while being able to manually and remotely (using UDP) override its ...
0
votes
1answer
21 views

how to make a UDP python localhost go public

I have a python localhost set up on a raspberry pi to listen for UDP packets. But I'm wondering how I can make this a public server in order to send UDP packets from roaming devices. The below code ...
-2
votes
0answers
10 views

is a longer or shorter socket time out for a datagram (UDP) socket more preferable [closed]

I have many packets being sent to my server (hundreds a second). I have set a data socket time out of 500 milliseconds. I assume that this short amount of time will allow enough time as to not ...
1
vote
0answers
17 views

J2ME UDP slower than TCP

I'm developing a client/server based system using two GPRS modems (Siemens TC65). The application sends relatively small frames (128 bytes each) from the client to the server and vice versa. ...
0
votes
1answer
17 views

How to send Udp packet 2 or 3 times after failed received packet in java?

I have send Udp packet to the Server. If the server is OK then I can receive the response packet nicely but when the server is down then I did not get any response packet. Anybody can help me that how ...
1
vote
0answers
28 views

bash receive udp packets tcpdump

On one server, I am receiving udp packets on 192.168.0.51 from an application running on 192.168.0.21, and have to reply with a specific acknowledgement packet. The solution I wrote works as ...
0
votes
0answers
14 views

“RTP over UDP” packet loss analysis with Wireshark

I am running Application A on Machine A and Application B on Machine B. Both machines are running Windows7. Application A sends RTP packets over UDP to Application B through a private LAN. We are ...
0
votes
2answers
50 views

UDP Listener in C#

I'm trying to create a UDP listener within a Windows form. I want to listen on an address and endpoint and want to display the received text in a textbox on the form. I've tried to attack this from ...
0
votes
2answers
32 views

pselect gets interrupted occationally

First and formost, I didn't have the reputation to tag this as being a question about 'pselect', so I went with 'select'. I use pselect to handle timeouts on an UDP socket. The code looks as follows: ...
0
votes
1answer
21 views

UDP client cannot talk through an external IP address

I am running a UDP server and client (python). When within the same local network, the client is able to talk to the server. However when the server IP address is set to IP address of the router ...
-1
votes
0answers
12 views

Port 9 Security Vulnerabilities [closed]

I'm trying to set up port forwarding with my home router so that I can use Wake On LAN with a cheesy Java script that I've made to send a UDP magic packet from outside of my home network. My router ...
0
votes
1answer
36 views

strange udp socket sendto behaviour

I'm trying to send a data using UDP socket and capture the data using a wireshark (under Windows7): client_sockd= socket(AF_INET,SOCK_DGRAM,IPPROTO_IP); client_address.sin_family = AF_INET; ...
0
votes
1answer
25 views

SIP Over TCP versus SIP over UDP [ SIP: Session Initiation Protocol ]

What is the difference between SIP over UDP and SIP over TCP? What does SIP over TCP really means? It means: SIP over TCP means both SIP and underlying RTP protocol use TCP or Run SIP ...
0
votes
1answer
63 views

UDP socket chat application in java

I'm trying to create a very simple chat application in Java using UDP sockets. There is one server and multiple clients. right now my code is : Server : package chat; import java.io.*; import ...
1
vote
0answers
14 views

Distinguishing between 'destination of udp packet unreachable' and 'received packet with payload of length 0' in Objective C

Currently, when I send a udp packet to an unreachable destination (e.g. an unbound local port), I get an event that I can't seem to distinguish from receiving a zero-length udp packet. I am creating ...
0
votes
1answer
38 views
+50

Connect to and UDP service though a proxy via fsockopen

I'm trying to make a request on a udp service (dchk.denic.de) through a proxy. I'm currently using fsockopen to connect to this service via the following code : $fp = fsockopen("udp://dchk.denic.de", ...
2
votes
1answer
58 views

Why the first client sees to have source ip of 0.0.0.0?

I have a client.c server.c on linux. on both I init a socket: sockfd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP) in the server I add: listen_addr.sin_family = AF_INET; listen_addr.sin_port = ...
0
votes
0answers
14 views

iOS GCDAsyncUdpSocket client get the local port

I'm wondering how to get the client local port in GCDAsyncUdpSocket. By that I mean the port that my messages are transmitted from. Please note that I'm not trying to create a server but rather a ...
0
votes
0answers
15 views

Udp broadcasting and screen stuck

When I do the iphone software I need to use udp broadcast to send and receive data, but in the process the screen stuck. I do not know how to deal with this.Any idea? Thanks in advance!
-1
votes
1answer
41 views

Python networking with UDP for action games

Okay, please don't kill me for asking this. I'm currently developing a 2D online multiplayer platformer shooter. Yeah, it's that cool. I have most of the game written with a couple of bugs and ...
0
votes
1answer
15 views

Secured communication in a real time game

I want to create a real time multiplayer game and I wonder how should I secure and identify each user. For instance imagine I have a map with 5 players in it, each player sends every 1/60 seconds his ...
-1
votes
0answers
22 views

UDP port forwarding or bypassing isp's port blocking [closed]

I am using a local broadband connection which is based on PPPoE connection.So,no router on my end for port forwarding.I need open UDP port on 16000.But,my blocks those and other ports due to VOIP ...
4
votes
2answers
67 views

How should I implement a distributed Remote Method Invocation system in .NET?

Original Post How would I implement a distributed Remote Method Invocation system? I'm trying to create something like the following: Master Server to track individual "hosts". Hosts can ...
0
votes
1answer
45 views

Make a multiprocess UDP server with Python, one process for listening to one port

I want make a multiprocess UDP server with Python, listen one port for each process from a class: processListener.py: import multiprocessing import socket class ...
-2
votes
0answers
37 views

Send multiple TCP/UDP connections to occupy the possible ports java [closed]

does anyone know how I can occupy all possible ports and to keep them alive, in the Java programming language?The picture below is what I need to create in Java. I'm not sure which way I should do ...
0
votes
0answers
21 views

block specific udp packet with iptables

Is it possible to block specific udp packet using iptables? for example I want to block packet containing bd 65 like at line 3, that is a sequence number of RTP packet
0
votes
0answers
17 views

“Connection reset by peer” errors with GCDAsyncUdpSocket on iOS6

I am having a problem with using GCDAsyncUdpSocket. I am using the iPad as a user interface app that interacts with another app - call it Host, the latter running on a separate Windows machine. Both ...
2
votes
0answers
28 views

Java UDP sending and receiving thousands of data

I have a database with different FPS games IP addresses and I need to query each server 5 in 5 minutes. With the query message response (received from the servers) I know if the server is online, how ...
0
votes
1answer
16 views

Bittorrent PIECE message not received

Basically i get messages like Choke, Unchoke, Have and Bitfield, but i don't receive any of the PIECE messages, why could it be so? I saw some old unanswered question also, but it didn't help. ...
0
votes
0answers
38 views

UDP packets can't be received by client on WP7

I've tried to make an UDP client that can run on a WP7 device, communicating via a wifi network. I've used this example from MSDN: ...
0
votes
2answers
38 views

Receiving Ethernet frames from an UDP port

I need to listen on multiple UDP ports and process received datagrams as Ethernet frames. I cannot think of any other solution than creating a SOCK_RAW socket to receive ethernet frames, check if what ...
0
votes
0answers
39 views

How to read input from RTSP stream in C#?

I have a server running serving RTSP streaming video content on 127.0.0.1:8554/nurv I am now trying to write a proxy that will read the stream from this location and pass it along via a socket ...
-2
votes
3answers
49 views

How to start with UDP IN IOS OBJECTIVE_C

Hi to all who visit here. I am working with xcode proj which use UDP . So, what i need to do here. What frameworks i need to include? How should i start this. ? In particular, how would I set up a ...
4
votes
3answers
118 views

How can I send UDP packets through a SOCKS5 proxy in NodeJS?

Is there a way to send UDP packets through a SOCKS5 proxy in NodeJS? Similarly, is it possible to bind a UDP socket to a specific localAddress?
0
votes
1answer
60 views

UDP multi-client chat server

I have a multi-client chat server and for some reason only the first client is being added. I used a tutorial to help get me started. I have included my code below. When I try and add another client ...
1
vote
1answer
57 views

Perl send() UDP packet to multiple active clients

I am implementing a perl based UDP server/client model. Socket functions recv() and send() are used for server/client communication. It seems that send() takes the return address from the recv() call ...
1
vote
0answers
16 views

Log4J 1.2 SyslogAppender to detect fail connection

Currently I'm using log4j 1.2.x, and intend to use SyslogAppender for logging to syslog server. I have accomplish this. However, I am aware that there is a possibility that the message does not ...
1
vote
1answer
80 views

Linux UDP max size of receive buffer

What's the maximum size of Linux UDP receive buffer? I thought it's limited only by available RAM, but when I set 5GB for rmem_max: echo 5000000000 > /proc/sys/net/core/rmem_max and 4GB for the ...
0
votes
0answers
22 views

testing UDP app for iPhone

I have developed an iPhone/iPad app called iDatanet which lets you listen to a stream of UDP data off a specified port with a very simple protocol: iDataNet@var1;val1@var2;val2@var3;val3 (… etc …) I ...
0
votes
0answers
8 views

RTSP - communication not happening over 6971

We had hosted a channel in a darwin server, but the 2G channels are not played. Took a wireshark capture and found that RTP communication over 6971 is not happening. whenever we try to play the ...
1
vote
0answers
29 views

Incoming UDP packets get queued then lumped together using Python

I am sending packets across a wireless network using UDP and Android, and receiving with Python. I'm sending rather time sensitive data, and I have a issue where the packets aren't being read fast ...

1 2 3 4 5 63