$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] Using boost::Asio for connected UDP socket
From: Cliff Green (cliffg_at_[hidden])
Date: 2012-08-28 18:11:20
To clarify, in case I misunderstood the various questions / replies:
Create one UDP socket (bound to a port) for incoming datagrams. From then on, all incoming datagrams (that are sent to that address / port) can be ârepliedâ to with âreceive_fromâ and âsend_toâ â no additional sockets need to be created. This is a common use case for datagrams.
Cliff