aboutsummaryrefslogtreecommitdiff
path: root/libbutl/openssl.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/openssl.mxx
parentceb8f4abba2cfc7ac51385fa59693c641151c8d2 (diff)
Add process::pipe struct, extend process API
Diffstat (limited to 'libbutl/openssl.mxx')
-rw-r--r--libbutl/openssl.mxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/libbutl/openssl.mxx b/libbutl/openssl.mxx
index 42afc5e..a465aad 100644
--- a/libbutl/openssl.mxx
+++ b/libbutl/openssl.mxx
@@ -152,26 +152,26 @@ LIBBUTL_MODEXPORT namespace butl
small_vector<const char*, 2> options;
};
- int
+ pipe
map_in (nullfd_t, io_data&);
- int
+ pipe
map_in (const path&, io_data&);
- int
+ pipe
map_in (fdstream_mode, io_data&);
template <typename I>
typename std::enable_if<is_other<I>::value, I>::type
map_in (I&&, io_data&);
- int
+ pipe
map_out (nullfd_t, io_data&);
- int
+ pipe
map_out (const path&, io_data&);
- int
+ pipe
map_out (fdstream_mode, io_data&);
template <typename O>