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 <iow/ip/tcp/client/options.hpp>
10 : #include <wfc/workflow.hpp>
11 :
12 : namespace wfc{ namespace io{
13 :
14 0 : struct client_tcp_config
15 : : public ::iow::ip::tcp::client::options
16 : {
17 : bool rn = true;
18 : bool abort_if_error = true;
19 : size_t startup_pool = 1;
20 : size_t primary_pool = 0;
21 : size_t secondary_pool = 0;
22 : };
23 :
24 : }}
|