ombrac-server 0.7.7

Safe, fast, small TCP over QUIC tunnel using Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "binary")]
pub mod binary;

#[cfg(feature = "ffi")]
pub mod ffi;

// Re-export functions for backward compatibility
#[cfg(feature = "binary")]
pub use binary::init_for_binary;

#[cfg(feature = "ffi")]
pub use ffi::{LogCallback, init_for_ffi, set_log_callback, shutdown_logging};