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
use crate::{BoxedConnectHandler, BoxedLaunchHandler};
use std::collections::HashMap;

pub struct DistantManagerConfig {
    /// Scheme to use when none is provided in a destination
    pub fallback_scheme: String,

    /// Buffer size for queue of incoming connections before blocking
    pub connection_buffer_size: usize,

    /// If listening as local user
    pub user: bool,

    /// Handlers to use for launch requests
    pub launch_handlers: HashMap<String, BoxedLaunchHandler>,

    /// Handlers to use for connect requests
    pub connect_handlers: HashMap<String, BoxedConnectHandler>,
}

impl Default for DistantManagerConfig {
    fn default() -> Self {
        Self {
            fallback_scheme: "distant".to_string(),
            connection_buffer_size: 100,
            user: false,
            launch_handlers: HashMap::new(),
            connect_handlers: HashMap::new(),
        }
    }
}