summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: aad8d023e2cac46a1d7fabc41ee8c0064a3fcbbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![feature(test)]
#![allow(dead_code)]

extern crate jemallocator;

#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;

// mod config;
mod platform;
mod wireguard;

use platform::TunBind;

fn main() {
    let (readers, writers, mtu) = platform::PlatformTun::create("test").unwrap();
}