UDPClient

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

Does anyone know if is is possible to have multiple UDP listeners bound to the same local por
and if yes how to do that?

Thanks

Bil
 
I don't think that's possible. I believe you can have the same port
allocated to multiple sockets using different protocols, but not the same
one.
 
=?Utf-8?B?QmlsbFQ=?= said:
Does anyone know if is is possible to have multiple UDP listeners bound
to the same local port and if yes how to do that??

Yes you can. You need to set the reuse option.
 
Back
Top