File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 11
11
namespace boost { namespace network { namespace tags {
12
12
13
13
struct async {};
14
+ struct http {};
15
+ struct tcp {};
16
+ struct udp {};
14
17
15
18
struct default_string {};
16
19
struct default_wstring {};
17
- struct http_default_8bit_tcp_resolve {};
18
- struct http_default_8bit_udp_resolve {};
19
- struct http_keepalive_8bit_tcp_resolve {};
20
- struct http_keepalive_8bit_udp_resolve {};
21
- struct http_server {};
22
- struct http_async_8bit_udp_resolve : async {};
20
+ struct http_default_8bit_tcp_resolve : http,tcp {};
21
+ struct http_default_8bit_udp_resolve : http,udp {};
22
+ struct http_keepalive_8bit_tcp_resolve : http,tcp {};
23
+ struct http_keepalive_8bit_udp_resolve : http,udp {};
24
+ struct http_server : http {};
25
+ struct http_async_8bit_udp_resolve : http, async,udp {};
23
26
24
27
typedef default_string default_;
25
28
You can’t perform that action at this time.
0 commit comments