Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ Simple UDP Server [closed]

Tags:

c++

udp

What is the simplest way to have a udp server in c++ and be able to receive its messages?

like image 348
nebkat Avatar asked Dec 07 '25 20:12

nebkat


1 Answers

boost asio

example: http://www.boost.org/doc/libs/1_45_0/doc/html/boost_asio/example/echo/async_udp_echo_server.cpp

like image 102
Andriy Tylychko Avatar answered Dec 10 '25 09:12

Andriy Tylychko