aboutsummaryrefslogtreecommitdiff
path: root/libbutl/curl.mxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-12-14 14:24:38 +0200
committerKaren Arutyunov <karen@codesynthesis.com>2017-12-15 13:38:33 +0300
commit53b4f58c78e21cbc442891c2ce2a2b99a32e47bc (patch)
treef2b892650367a44332d7a169ede8aa9e60e6a3c8 /libbutl/curl.mxx
parentceb8f4abba2cfc7ac51385fa59693c641151c8d2 (diff)
Add process::pipe struct, extend process API
Diffstat (limited to 'libbutl/curl.mxx')
-rw-r--r--libbutl/curl.mxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/libbutl/curl.mxx b/libbutl/curl.mxx
index 57d6e56..7beb844 100644
--- a/libbutl/curl.mxx
+++ b/libbutl/curl.mxx
@@ -169,20 +169,20 @@ LIBBUTL_MODEXPORT namespace butl
std::string storage;
};
- int
+ pipe
map_in (nullfd_t, method_proto, io_data&);
- int
+ pipe
map_in (const path&, method_proto, io_data&);
template <typename I>
typename std::enable_if<is_other<I>::value, I>::type
map_in (I&&, method_proto, io_data&);
- int
+ pipe
map_out (nullfd_t, method_proto, io_data&);
- int
+ pipe
map_out (const path&, method_proto, io_data&);
template <typename O>