diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2017-01-06 11:22:47 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2017-01-06 11:22:47 +0100 |
| commit | 74793b5c8c69bf3ffdd215ed6a06632f0cf69b7d (patch) | |
| tree | be871f3ea68b5812e38b6947eb30118f252c2271 /src | |
| parent | e0c86279fbb4d35c0858cece1fef0b8f055790a0 (diff) | |
| download | mullvadvpn-74793b5c8c69bf3ffdd215ed6a06632f0cf69b7d.tar.xz mullvadvpn-74793b5c8c69bf3ffdd215ed6a06632f0cf69b7d.zip | |
Move process.rs module to own directory
Diffstat (limited to 'src')
| -rw-r--r-- | src/process/mod.rs (renamed from src/process.rs) | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/process.rs b/src/process/mod.rs index 08b2637faf..2d06ab4ae0 100644 --- a/src/process.rs +++ b/src/process/mod.rs @@ -6,6 +6,9 @@ use std::io; use std::path::{Path, PathBuf}; use std::process::{Command, Child, Stdio}; +/// A module for monitoring child processes and get notified of events on them. +pub mod monitor; + /// An OpenVPN process builder, providing control over the different arguments that the OpenVPN /// binary accepts. pub struct OpenVpnBuilder { |
