Tagged Questions
2
votes
2answers
3k views
Objective-C - Determining IP address of iPod touch programmatically
I'm programming in objective-C for several iPod devices and I was wondering about something. I'm developing an application that utilizes the server-client model and I'm using the UDP protocol with C ...
1
vote
1answer
701 views
multicast ip address - blocked in call to recvfrom
i am writing a simple multicast application. i intend to run it on localhost.
i have done the following:
char *maddr;
.
.
.
sendfd = socket(...);
struct sockaddr_in sasend;
sasend.sin_family = ...
0
votes
1answer
558 views
multicasting on linux
i am testing a simple multicast application on linux. i got it working on my pc by doing the following:
disabling the firewall
running the command route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0
...