The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
55 views

NodeJS v.0.10.X is not backwards compatible with v0.8.X for multicast

NodeJS v.0.10.X is not backwards compatible with v0.8.X for multicast. bind seems to have changed from synchronous to async. I'm currently working around the issue with a horrible fudge: ...
0
votes
3answers
61 views

Address aleardy in use exception (Multicast Socket)

Im trying to write server and client for service which would tell the current time. My code: SERVER public class TimeServer { public static void main(String[] args) { try { final ...
2
votes
0answers
97 views

Unable to capture the IPv6 multicast traffic for Windows 8

Following is the function I wrote to capture IPv6 multicast data coming on multicast address ff02::1 and port 9154. This code works fine on Windows Vista and Windows 7. But I am unable to capture the ...
0
votes
1answer
127 views

MulticastSocket dont disable loopback on mac os x

I have a serious problem in mac os x. Im developing an backup distributed application in mac os x. The application have to send a file to the network and the peers of network have to backup the file. ...
0
votes
0answers
136 views

Please suggest whether Android WiFi Direct supports Multicast Socket communication

Using WiFi Direct in Android is it possible to establish a MulticastSocket communication? I tried a lot for multicast socket communication between S3 and Note2 devices but no success. Is WiFi Direct ...
1
vote
1answer
149 views

MulticastSocket.receive() hangs when I try to receive packets from a server on a network with an IP that is not 192.168.X.X

I'm having this issue on my Windows 7 machine where a call to MulticastSocket.receive() in Java will hang indefinitely (it never receives the packets) when I try to listen in on a server connected to ...
0
votes
1answer
203 views

MulticastSocket Chat Server

So I'm starting off in networking and seem to have a basic idea of setting up a client and server that will communicate with each other, but I want something that will actually send the message to all ...
-1
votes
1answer
77 views

udp multicasting using MAC address [closed]

i want to use udp multicasting in my program but none of the devices has an ip address. can i do the multicasting using MAC address instead? any sort of help would be appreciated.thanx
0
votes
0answers
209 views

Convert to video/audio stream from raw datagram in java

I am streaming a audio file(mp3) using vlc player. It is using rtp protocol, and multicast. I wrote a Java class to receive datagram packet from multicast group. It's working fine. Problem is i need ...
2
votes
1answer
170 views

seems that my receive method does't get packet on multicast socket in java

I have a problem with receive method while using multicast socket in java. there are some hosts that they want to have a group chat using multicast socket.two threads (Read & Write) are started on ...
3
votes
1answer
71 views

J2ME MulticastSocket alternative

I have an app in Android that use communication by MulticastSocket. I want to write similar app in J2ME with communication Android <-> J2ME through WiFi using MulticastSocket. The problem is that ...
2
votes
1answer
131 views

ipv6 multicast reception

I'm unable to receive the multicast packets sent by the server. I could see the packets being received via tcpdump. Can anyone please let me know what am I doing wrong here.Thanks. struct ipv6_mreq ...
0
votes
1answer
187 views

Communication between C programs across a adhoc network

I have the following server code #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <time.h> #include ...
1
vote
0answers
173 views

multicast socket doesn't work when using JDK 7 on Mac

I have a code about multicast sending and receiving. It can work on Mac using JDK 6. However, when I change to use JDK 7, it can't work correctly. The code is like this: final InetAddress group = ...
1
vote
0answers
102 views

multicast socket doesn't work after the machine wakes up from sleep or hibernate in Windows 7

This question is similar with multicast socket - will not work when computer wakes up from sleep. But that question was already closed and its solution is not what I want. I have a code about ...
1
vote
1answer
37 views

How to get the name of host sending the packet

I wrote a java program that opens a multicast socket and gets a packet from any sender using same multicast IP. I want know the name of the host and IP that is sending. THANKS IN ADVANCE
0
votes
0answers
117 views

How to set the “bindaddr” parameter of the in the constructor of java MulticastSocket?

Should I set the parameter to the multicast address or the unicast address of the network interface that I want to listen on? Below is the network interface list of my machine eth0:192.168.1.100/24 ...
1
vote
1answer
281 views

Java Multicast Socket not working on Windows (SocketPermission Exception)

When starting a Multicast java socket on windows I get the following error (firewall deactivated): java.security.AccessControlException: access denied (java.net.SocketPermission 230.0.0.1 ...
1
vote
0answers
169 views

How to disable loopback in a Windows PGM socket?

I'm using the standard Windows PGM socket implementation (also known as the "MSMQ PGM"), with RDM socket type. I have noticed that, as per this Microsoft link, the MulticastLoopBack socket option ...
1
vote
1answer
392 views

Java MulitcastSocket receive 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 receive() method in ...
1
vote
3answers
4k 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 ...
2
votes
0answers
1k 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 ...
0
votes
2answers
735 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
1k 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 ...
-3
votes
1answer
502 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(.....) ...
0
votes
2answers
1k 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
2k 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 ...
1
vote
1answer
6k 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 ...
1
vote
2answers
2k 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 ...
3
votes
1answer
2k 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
692 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 , ...
3
votes
2answers
1k 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, ...
2
votes
2answers
7k 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 ...
0
votes
2answers
2k 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 ...
2
votes
2answers
5k 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 ...
0
votes
1answer
952 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 ...
1
vote
1answer
1k 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 ...