dope 0.12.0

The manifold runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate dope;
use dope::runtime::profile::{Balanced, RuntimeProfile};

#[test]
fn balanced_profile_bounds_connection_age() {
    assert!(
        Balanced::ABS_CONN_AGE.is_some(),
        "Balanced must cap absolute connection age so a dribbling client cannot pin a slot forever"
    );
    assert!(
        Balanced::SEND_DEADLINE.is_some(),
        "Balanced must cap the send deadline"
    );
}