Tagged Questions
0
votes
1answer
26 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:
...
2
votes
0answers
75 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
103 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. ...
-1
votes
1answer
76 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
2
votes
1answer
122 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
165 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
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
113 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
0answers
165 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
366 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 ...
0
votes
2answers
663 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 ...
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
1k 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
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 ...