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
582 views
receive multicast from specific network interface on Linux
I'm trying to receive a multicast data from specific network interface on CentOS 5.5
sd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
memset(&addr, 0, sizeof(addr));
addr.sin_family = AF_INET;
...