libsession 0.1.7

Session messenger core library - cryptography, config management, networking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Stub direct router - sends requests without onion routing.

/// Stub direct router. Full implementation pending integration testing.
pub struct DirectRouter;

impl DirectRouter {
    /// Creates a new direct router instance.
    pub fn new() -> Self {
        Self
    }
}

impl Default for DirectRouter {
    fn default() -> Self {
        Self::new()
    }
}