Line data Source code
1 : //
2 : // Author: Vladimir Migashko <migashko@gmail.com>, (C) 2013-2018
3 : //
4 : // Copyright: See COPYING file that comes with this distribution
5 : //
6 :
7 : #pragma once
8 :
9 : #include <wfc/iinterface.hpp>
10 : #include <iow/ip/udp/server/options.hpp>
11 : #include <set>
12 :
13 : namespace wfc{ namespace io{
14 :
15 0 : struct server_udp_config
16 : : public ::iow::ip::udp::server::options
17 : {
18 : std::string target_name;
19 : bool rn = true;
20 : std::weak_ptr<iinterface> target;
21 : };
22 :
23 : }}
|