Good day!

I use boost :: asio :: ip :: udp :: socket to read data from a specific address and port. As I understand it, boost :: asio :: socket_base :: reuse_address allows you to reuse the address with another socket after the first socket is closed. Can I make two sockets read SIMULTANEOUSly data from the same address and port?

Thank you in advance!

  • What for? Do you want to read the same thing twice, or read twice as fast? - VTT
  • Read the same thing twice for two devices, i.e. we have two objects, each of which has its own socket and each must read from one port - Yusup

0