Page 1 of 1

Multicasting

Posted: Mon Jan 24, 2011 8:24 pm
by ajtgarber
This is probably going to be a stupid question, but when your making a multicasting application, how do you decide what address to use?

Re: Multicasting

Posted: Fri Jan 28, 2011 7:38 pm
by short
What

Re: Multicasting

Posted: Fri Jan 28, 2011 8:07 pm
by Ginto8
what exactly do you mean by multicasting? it's not a term I'm familiar with, and I'm fairly certain most here aren't.

Re: Multicasting

Posted: Sat Jan 29, 2011 1:20 am
by adikid89
I think he means broadcasting to an entire network..Don't know much about networking though, so I can't help... sorry

Re: Multicasting

Posted: Sat Jan 29, 2011 5:21 am
by MrDeathNote
I don't know about other languages, but in c# you use a multicast group IP address.

Re: Multicasting

Posted: Sat Jan 29, 2011 8:33 am
by ajtgarber
So far what I know about it, is that a couple computers join a group, and when one sends a packet, they all get the packet. Its less reliable than TCP. I think (?) its called UDP. I just don't know what to set the address to? Do I just make one up or find it somewhere?

Re: Multicasting

Posted: Sat Jan 29, 2011 11:07 am
by D-e-X
ajtgarber wrote:So far what I know about it, is that a couple computers join a group, and when one sends a packet, they all get the packet. Its less reliable than TCP. I think (?) its called UDP. I just don't know what to set the address to? Do I just make one up or find it somewhere?
I suggest you hit the webs and the books hard ;)

Re: Multicasting

Posted: Sat Jan 29, 2011 1:02 pm
by ajtgarber
Yeah... probably going to have to hit the glowing tome again...

Re: Multicasting

Posted: Sun Feb 27, 2011 4:37 pm
by GroundUpEngine
adikid89 wrote:I think he means broadcasting to an entire network..Don't know much about networking though, so I can't help... sorry
Multicast means send to group of hosts on network, and broadcast means send to all hosts on network. ;)