aboutsummaryrefslogtreecommitdiff
path: root/bpkg/openssl
blob: c2f871288eda4e1d776d0fe8f4bc5c36192e2802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// file      : bpkg/openssl -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BPKG_OPENSSL
#define BPKG_OPENSSL

#include <butl/process>

#include <bpkg/types>
#include <bpkg/utility>

#include <bpkg/common-options>

namespace bpkg
{
  // Start the openssl process. Parameters in, out, err flags if the caller
  // wish to write to, or read from the process STDIN, STDOUT, STDERR streams.
  // If out and err are both true, then STDERR is redirected to STDOUT, and
  // they both can be read from in_ofd descriptor.
  //
  butl::process
  start_openssl (const common_options&,
                 const char* command,
                 const cstrings& options,
                 bool in = false,
                 bool out = false,
                 bool err = false);
}

#endif // BPKG_OPENSSL