Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
16 views

Java MulitcastSocket Recieve Method “Blocks a Program”?

I am writing a class in Java to simplify the process of connecting to, joining, sending, and receiving data from a multicast group. At this point, I am having trouble with the recieve() method in ...
1
vote
0answers
232 views

How can I receive Multicast messages on Android?

I've got a very simple draw application on my PC that stores points and draws an oval for each point. I'm trying to send this to an android application that will receive coordinates for each point ...
1
vote
2answers
978 views

Android Multicast socket stops listening

I have a service on Android that listens and responds to packets it receives via multicast. This works most of the time, but unfortunately, I'm finding that every now and again it'll just stop ...
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; ...
1
vote
0answers
438 views

SSDP Get Shared folder list using M-SEARCH?

I am using SSDP to send discover request using M-SEARCH to get list of services present. My requirement is like i want to get list of share folders also which are present in that server. Currently , ...
1
vote
2answers
506 views

Is Java MulticastSocket threadsafe?

I have two threads. First one sends datagrams with a MulticastSocket in loop; the second thread receives datagrams using the same instance of MulticastSocket in loop. It seems to be working properly, ...
1
vote
2answers
4k views

Help with Sending/ Receiving UDP packets - C Sockets

Ok, if you look at some of my previous questions, I've been working on getting a simple connection up and running with C sockets (I'm still fairly new to the whole networking aspect of an program, but ...
1
vote
1answer
819 views

Java: Determine receiving address when receiving with MulticastSocket

I am using MulticastSocket to receive UDP Multicast packets. How can I determine to which address such a packet was sent? With the methods provided, I am only able to determine the sender address. Of ...
0
votes
3answers
131 views

How to minimize UDP packet loss

I am receiving ~3000 UDP packets per second, each of them having a size of ~200bytes. I wrote a java application which listens to those UDP packets and just writes the data to a file. Then the server ...
0
votes
0answers
30 views

Creating inputstream from MulticastSocket

I have a method like this: public void readData(java.io.InputStream aStream); and my data will come from ...
0
votes
1answer
146 views

PHP multipoint loopback

I'm trying to implement simple application using PHP (unfortunately it must be in PHP) with sockets. I have one page - let's say multi.php and many instances of page client.php I wan't to send some ...
0
votes
3answers
297 views

MulticastSocket in java : BindException all the time

I am coding a basic app, a chat that sends message through the network using multicast and unicast, depending on the situation. So far, no problem, until a while ago when I began the MulticastSocket ...
0
votes
2answers
377 views

Java MulticastSocket causing null pointer exception

I'm trying to get a multicast socket working on a 'server' app, which will spit info at a bunch of android phones. The code snippet responsible for setting up the socket and sending a some data is as ...
0
votes
1answer
402 views

How to implement a multicast socket in c++

I'm a c# programmer and i need to implement a multicast socket in c++. I've try to google search it and didnt find much help. So if someone could give me some links to a good c++ multicast socket ...
0
votes
1answer
2k views

Problem with MulticastSocket on Java-Android

I'm starting to code with MulticastSocket, trying to make a simple app with a client and a server to send messages. The code I have for the server: import java.io.IOException; import ...
0
votes
2answers
1k views

Extracting IP address from C sockets

Ok, I'm still new to using C sockets, but I was wondering if there is a way to extract the IP address adding running setsockopt? If you'll look at my code below, I have everything in my multicast ...
0
votes
1answer
489 views

MulticastSocket not responding after failure

I get a SocketException when trying to call joinGroup(addr) on MulticastSocket. This is only happening on a Windows machine that we have setup to auto start our appliction when the machine is booted ...
-3
votes
1answer
238 views

client server socket programming

Hii all I am novice in socket programming.. I had two programs. RECEIVE and SENDRECEIVE. In RECEIVE I simply write the code for receiving data from a program acting as server using resvfrom(.....) ...