How do you use gen_udp in Erlang to do multicasting? I know its in the code, there is just no documentation behind it. Sending out data is obvious and simple. I was wondering on how to add memberships. Not only adding memberships at start-up, but adding memberships while running would be useful too.
|
feedback
|
|
Here is example code on how to listen in on Bonjour / Zeroconf traffic.
| |||
|
feedback
|
|
Multicast sending has been answered, receipt requires subscription to the multicast group. It (still) seems undocumented, but has been covered on the erlang-questions mailing list before. http://www.erlang.org/pipermail/erlang-questions/2003-March/008071.html
where the The same options used above can be passed to | ||||
|
feedback
|
|
I try to get this example running on my PC. What could happen, if I get always the message {error,eaddrnotavail} by opening the receive socket? Example 1: This works:
Example 2: Getting an runtime Error:
% --> {error,eaddrnotavail}
| |||
feedback
|
|
Multicast is specified by IP Address It's the same in erlang as for all languages. The IP addresses 224.0.0.0 through 239.255.255.255 are multicast addresses. Pick an address in that range, check that you're not overlapping an already assigned address, and you are good to go. | |||
feedback
|