1
vote
3answers
75 views
what is best port for program
Which of the following ports is the best one to use for a program I'm working on using a custom protocol still under development. I'm looking for one that will be accessible to vir …
0
votes
5answers
71 views
How to ignore your own broadcast udp packets
For the following I'm assuming one network card.
I have a component of my program which is designed to let others in the subnet know of its existence. For this, I've implemented …
0
votes
4answers
38 views
General sockets UDP programming question
I have an FPGA device with which my code needs to talk. The protocol is as follows:
I send a single non-zero byte (UDP) to turn on a feature. The FPGA board then begins spewing …
0
votes
1answer
19 views
Is there a way to manipulate udp packets after an application sends it to a socket?
In other words, can I intercept those packets (possibly at the stack level) using a separate application, manipulate them and then send them to the destination the original applica …
0
votes
0answers
37 views
passing structs over UDP weakly typed
I'm new to network programming, and am basically learning-by-doing. I'm folling Mike Ashes program "Sphere Net" from iPhone Cool Projects. I understand what's going on in the pro …
0
votes
1answer
53 views
Use datagrams in java to send video/audio from client to server?
Hey everyone, I'm having a bit of a problem with UDP and Datagrams. I'm supposed to make a server that will get a request from the client to send a file in the same directory. Th …
1
vote
4answers
90 views
Receiving UDP packets in C
I have been trying to do this in ms visual studio 2008 using the winsock package but whenever i try to build, i get linker errors for all winsock functions (ie: socket, recvfrom, W …
0
votes
2answers
57 views
For UDP broadcast gurus: Problems achieving high-bandwidth audio UDP broadcast over WiFi (802.11N and 802.11G)
Hi,
I'm attempting to send multichannel audio over WiFi from one server to multiple client computers using UDP broadcast on a private network.
I'm using software called Pure Dat …
0
votes
1answer
39 views
Twisted Spread suitable for multiplayer racing sim?
Do you think that Twisted Spread may be suitable (in terms of performance) for a multiplayer racing simulator? The rest of the application is based on Python-Ogre.
Can Perspective …
0
votes
2answers
73 views
Multiple programs using the same UDP port? Possible?
I currently have a small Python script that I'm using to spawn multiple executables, (voice chat servers), and in the next version of the software, the servers have the ability to …
1
vote
2answers
55 views
Should I use (non-blocking) NIO for UDP?
According to this post, UDP just doesn't block. Are there any advantage using the (non-blocking) NIO API for UDP? Or should I just use the easier "traditional" io API?
0
votes
3answers
46 views
Finding the MAC address of the sender of a multicast UDP message in Python?
I have some code that listens for "announcements" via UDP multicast. I can get the IP address of the sender, but what I really need is the MAC address of the sender (since the IP a …
0
votes
2answers
29 views
Ruby UDP server/client test fails
I am trying to setup a simple UDP client and server using Ruby. The code looks like this:
require 'socket.so'
class UDPServer
def initialize(port)
@port = port
end
def …
-1
votes
0answers
27 views
bandwidth limits of UDP broadcast over WiFi
I'm trying to achieve UDP broadcast of high-bandwidth data streams over WiFi on a simple, closed network, to multiple receivers.
I have successfully broadcast data streams to 2 co …
2
votes
5answers
54 views
Multiplayer UDP networking strategy, advice needed.
I'm attempting to create a C++ plugin for a realtime 3D game. Although I believe to have a firm grasp on the theory of UDP, how it works, what its strengths and weaknesses are, my …
