You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UDP doesn't need a network library, because one UDP socket can talk to multiple peers.
For UDP server, you can serve many clients with one UDP socket. (Or use SO_REUSEPORT for better scalability.)
For UDP client, you can talk to one or more UDP servers with one UDP socket.
A network library has not much to help you here.
If you need to integrate UDP with muduo's EventLoop, feel free to use a Channel and set the fd to your UDP socket.
Linux distro and version? x86 or ARM? 32-bit or 64-bit?
Branch (master/cpp11/cpp17) and version of muduo?
Version of cmake, gcc and boost? (If not from distro.)
The text was updated successfully, but these errors were encountered: