Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion lightway-core/src/tls/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
//! TLS library layer — re-exports the wolfssl crate's public API; in-tree
//! code imports TLS types from here rather than from `wolfssl` directly.

pub use wolfssl::get_wolfssl_version_string as get_version_string;
pub use wolfssl::*;

/// Get version string for the TLS library that we're using
pub fn get_version_string() -> String {
format!("WolfSSL v{}", get_wolfssl_version_string())
}
Loading