Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
484 views

How do I send real-time data over UDP?

I have to send a sequence of video frames over UDP as fast and real-time as possible and while I got the basics working, I am running into all sorts of difficulties. Some of my goals: Data will ...
4
votes
2answers
655 views

UDP hole-punching: testability on single machine

I'm writing a simple P2P application to test the feasibilty of using UDP hole-punching in a larger project. I tried my test apps from home yesterday and they worked. However, I am now at work and ...
4
votes
2answers
419 views

UdpClient — limited buffersize?

I'm having troubles with UdpClient in C#. I am streaming audio over the internet between two clients. On my microphone, with a sample rate of 16khz, I send UDP packets with audio with 6400 byte per ...
4
votes
2answers
961 views

Handling TUdpSocket

I'm trying to use the TUdpSocket in Delphi. What I want to do is connect to a UDP server, send some data and wait for answer. Data is sent correctly, but the control does not receive anything. I don't ...
3
votes
2answers
226 views

UDP - Can I send two datagram parts, and make the receiving end combine them into one?

This is maybe a stupid question, but since I am relatively new to UDP here it goes... If I am having two separate byte arrays that I need the receiving side to get as one big array, for example: ...
3
votes
1answer
93 views

How to find out which endpoint caused the SocketException, UdpClient

I'm using a UdpClient at the server end and it is sending data to the client end (more than one client). Suddenly the client stops listening on the udp port and the server gets hit with an ...
3
votes
3answers
194 views

Sending objects with UdpClient C#

I'm currently testing in visual studio 2010. I made a client and server which both will connect through UdpClient. I want to send an object from the client to the server. I have two methods to ...
3
votes
1answer
652 views

How to specify source port of a UdpPacket?

I wanted to send UdpPacket to a specific remote host (I already know the public IP and Port). I wanted to use C#'s UdpClient class. static int Main() { UdpClient client = new UdpClient(); ...
3
votes
2answers
2k views

websockets protocols?

I couldn't find this online so I thought I'd ask here. What protocols can be used by websockets currently? (in chrome) Also does chrome or any other browser plan to support RUDP protocol for ...
3
votes
1answer
1k views

UDP Broadcast Reception Problems with Ubuntu 9.04 but not 8.04

Updates 01-27ter: rp_filter information added 01-27bis: Note that the 9.04 box works on a different interface. 01-27: Added interface configuration information and analysis of a packet. Original ...
2
votes
2answers
58 views

SocketException on wrong thread

I am using the C# UdpClient class to to UDP networking. There is one UdpClient object, bound to a fixed local port, but not to any remote endpoint, because it needs to be able to send/receive to/from ...
2
votes
3answers
104 views

How to change UdpClient IP address?

Is there a way to change the UdpClient IP address on the fly? StartUpd() throws a System.Net.Sockets.SocketException: Only one usage of each socket address (protocol/network address/port) is ...
2
votes
1answer
24 views

Debugging missed broadcast datagrams, which show up in wireshark, but not in C# app?

I have two machines A1 and A2, both of which are running the same embedded code, which broadcast packets. The third machine, B3, is a Windows XP box running a C# (.NET 4.0) app, which listens for ...
2
votes
2answers
105 views

Error:Socket Select() function always return zero..?

can any one tell me why the following code always return 0 . the socket descriptor value is 3. i am using the open suse TFTP server . which is listening on port 69 in Local host. connect() function ...
2
votes
2answers
464 views

UDPClient Async BeginReceive is very slow

I am using UDPClient to send multicast request and receive response from various clients on the network. I am able to send request and also getting response, but response that I get is very slow. It ...
2
votes
1answer
183 views

IPFIX data over UDP to C# - can I decode the data?

I have a code sample from the MSDN website to create a UDP listener/client as I am trying to receive IPFIX/Netflow data from a firewall and then work with the data I receive. The code does work and ...
2
votes
2answers
572 views

how can I parse a UDP packet in .NET?

how can I parse a UDP packet in .NET? I'm using PCap.Net to capture packets, in this case UDP packets, which I can access from the PCap.net object via (PcapDotNet.packets.Ethernet.IpV4.Udp). How ...
2
votes
1answer
526 views

UDPClient Multicast receive fails on computer with multiple NICs

I've got a computer with multiple NICs - and UDPClient's send method continually fails. Here's the code: private static void receiveData() { recvSock = new UdpClient(PORT); ...
2
votes
3answers
3k views

Can I set the timeout for UdpClient in C#?

I am wondering whether I can set a timeout value for UdpClient receive method. I want to use block mode, but because sometimes udp will lost packet, my program udpClient.receive will hang there ...
2
votes
1answer
785 views

How do I find the port number assigned to a UDP client (in .net/C#)?

If I create a socket using var socket = new UdpClient(0,AddressFamily.InterNetwork); How do I then find the port of the socket? I'm probably being daft, but I'm not having luck in MSDN/Google ...
1
vote
1answer
37 views

Two-Way Communication Between Applications Using UDP

I've done this already using TCP/IP. I am now trying to do this using UDP. These applications are both being run on the same host. So both the client/server are sending/receiving on the ...
1
vote
1answer
26 views

UdpClient receive buffer. When does it drop packets?

I have a UdpClient sat on a port. I use it to send data. 99% of the time I don't care about any incoming packets. However, on rare occasions I need to listen for a response from one of my sent ...
1
vote
1answer
94 views

why is the UDPclient multicast not working?

public void send_multicast(string message) { UdpClient c = new UdpClient(10102); Byte[] sendBytes = Encoding.ASCII.GetBytes(message); IPAddress m_GrpAddr = ...
1
vote
4answers
48 views

Is sending the same mesage twice a good policy against UDPs disadvantages?

I have c# executables called server, client and client2 messaging each other on the same addr. I am differentiating the msgs by port number at which they are coming. regular run-1 Server starts ...
1
vote
1answer
128 views

Receive messages continuously using udpClient

I was looking for best solution to receive and process messages via UdpClient class in C#. Anyone have any solutions.
1
vote
3answers
77 views

When the client socket should be bound in order to receive UDP messages from a server?

I have seen two examples that illustrate how the client socket can receive messages from server. Example 1: server code http://man7.org/tlpi/code/online/book/sockets/ud_ucase_sv.c.html client code ...
1
vote
2answers
861 views

Non blocking UDP socket .NET “A non-blocking socket operation could not be completed immediately” exception

I have written a small UDP client server class in C# that is used to provide comms between a Linux and a Windows machines. The implementation of the UDP client and server in C# in Windows is a direct ...
1
vote
2answers
253 views

Sending UDP packets over the Internet

I'm trying to learn some of the ins and outs of P2P/decentralized networks. My question is the following. Say I have two machines named comp1 and comp2. Now comp1 is setup on my home network behind a ...
1
vote
3answers
238 views

Can UDP retransmit lost data?

I know the protocol doesn't support this but is it common for clients that require some level of reliability to build into their application a method for requesting retransmission of a packet if found ...
1
vote
2answers
173 views

How to reduce C# memory usage for Socket Application

I developed a simple UDP message server and client application in Windows, the server can send a message to the client but the client can't send anything, they are only listening. the problem is the ...
1
vote
1answer
209 views

UdpClient Receive does not return until 2nd broadcast

I think this is really weird. Tried to use UdpClient to synchronously receive broadcast msg, but it does not return although the broadcast has completed. Only on subsequent broadcast did I get the ...
1
vote
3answers
287 views

Need a better way to wait between send and receive,UDPclient

Here's my trouble: I have a udp class that allow me to send and receive data from a gameserver. But i found that the server allow only one request per 500ms per client. so if i send two request in a ...
1
vote
1answer
324 views

UDPClient in C#

i use in UDPClient in c#. i invoke the receive function, but the when i am running the app. the program enter to eternity loop. Why is this phenomenon? Maybe because no data were available on this ...
1
vote
1answer
331 views

C# udpclient.send to fake ip too slow to complete

when i udpclient.send to an fake/unknown ip, the process took a long time to complete(about 2 seconds per call. for 1000 calls it took about 2000 seconds). if i udpclient.send to a known ip, sending ...
1
vote
3answers
1k views

What is the size of udp packets if i send 0 payload data in c#?

I have figured out the maximum data before fragmentation between 2 endpoints using udp is 1472(other endpoints may vary). this states that mtu is 1500bytes and header overhead per packet is 28bytes.is ...
1
vote
2answers
274 views

Is it possible to set UdpClient ReceiveBufferSize property in c#?

I want to change udpclient receivebuffersize in order to prevent buffer overflow when receiving udp packets. is it possible to change it in c#. The actual property is ...
1
vote
4answers
2k views

How to use UdpClient.BeginReceive in a loop

I want to do this for (int i = 0; i < 100; i++ ) { Byte[] receiveBytes = receivingUdpClient.Receive(ref RemoteIpEndPoint); } But instead of using UdpClient.Receive, i have to use ...
1
vote
2answers
1k views

C# UdpClient server and client issue

This is my server code byte[] data = new byte[1024]; IPEndPoint ipep = new IPEndPoint(IPAddress.Any, 9050); UdpClient newsock = new UdpClient(ipep); Console.WriteLine("Waiting for a client..."); ...
1
vote
1answer
379 views

java.net.SocketException: Operation not permitted

Code: final int port = 5060; byte[] inviteBytes = sipInvite.getBytes(); DatagramPacket packet = new DatagramPacket(inviteBytes, inviteBytes.length, toInetAddress, port); DatagramSocket serverSocket = ...
1
vote
1answer
291 views

UdpClient receiving and sending at the same time

I am maintaining other's code and its using the class UdpClient. The code declares one instance of UdpClient and receives data continuously using the UdpClient.Receive(). When data is received, it ...
1
vote
1answer
147 views

Can clients using http 1.0 or older use UDP sockets instead of TCP sockets?

Can clients using http 1.0 or older use UDP sockets instead of TCP sockets? I was wondering as to what could prevent such use apart from firewall issues and packet size limitations. However, if that ...
1
vote
1answer
530 views

How to do UDP without port forwarding

I am creating an application in C#, It should send data with UDP. Everything works fine until, I try to communicate with a PC that is on the internet behind a router. How do I fix this so that I ...
1
vote
1answer
279 views

How to set ReceiveBufferSize for UDPClient? or Does it make sense to set? C#

I am implementing a UDP data transfer thing. I have several questions about UDP buffer. I am using UDPClient to do the UDP send / receive. and my broadband bandwidth is 150KB/s (bytes/s, not bps). ...
1
vote
2answers
1k views

Error receiving in UDP: Connection refused

I am trying to send a string HI to a server over UDP in a particular port and then to receive a response. However, after I try to get the response using recvfrom() I was stuck in blocking state. I ...
1
vote
1answer
921 views

ASP.NET UDP socket code works in development, but not in production on IIS

I have the following UDP broadcast listener running as a static component in a seperate thread on an ASP.NET web application. Why I would do this is really, unimportant, but the reason why this wont ...
1
vote
1answer
229 views

UDP request from a Windows Gadget

How can I make a UDP request from a Windows Gadget? This gadget is very, very similar to what I want to make, but I'd like to make a gadget that gets game information from TF2 servers by making a UDP ...
1
vote
3answers
576 views

Problem Trying to unicast packets to available networks

Trying to unicast packets to available networks. There are totally 3 networks. Managed to get packets in only one network.But i am not able to receive the packets in different networks. using this ...
1
vote
2answers
3k views

Broadcasting UDP message to all the available network cards

I need to send a UDP message to specific IP and Port. Since there are 3 network cards, 10.1.x.x 10.2.x.x 10.4.x.x when i send a UDP message,i am receiving the message only in one network ...
0
votes
2answers
31 views

UdpClient Send Receive

First I want to say that I read: UdpClient, Receive() right after Send() does not work? My question is: is this the normal standard way to handle UDP communications. Set up one UdpClient for send and ...
0
votes
0answers
40 views

Can't turn off MulticastLoopback on UdpClient

I am sending directed broadcast packets from a UdpClient. I am also listening on the target port on a second UdpClient (in the same app). I do not want to see packets created by myself, so I thought ...

1 2