sudo-rs 0.2.0-dev.20230627

A memory safe implementation of sudo and su.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod backchannel;
mod monitor;
mod parent;
mod pipe;

pub(super) use parent::exec_pty;

use crate::system::signal::SignalNumber;

/// Continue running in the foreground
pub(super) const SIGCONT_FG: SignalNumber = -2;
/// Continue running in the background
pub(super) const SIGCONT_BG: SignalNumber = -3;